﻿<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <description><![CDATA[Comments for Encrypting and Decrypting strings in Delphi.]]></description>
    <title><![CDATA[Comments for Encrypting and Decrypting strings in Delphi.]]></title>
    <link>http://dn.codegear.com/article/28325</link>
    <!-- source: http://dn.codegear.com/article/28325/feed-->
    <dc:date>2008-11-21T15:03:26-08:00</dc:date>
    <item>
      <description><![CDATA[thanks a lot for this simple and functional function.so,regardsFernando Carvalho]]></description>
      <title><![CDATA[Encrypting and Decrypting strings in Delphi.]]></title>
      <managingEditor>
	 (Fernando Carvalho)
</managingEditor>
      <guid isPermaLink="true">http://threads.codegear.com/threads/threads.exe/view?commentid=41225</guid>
      <dc:date>2008-06-25T16:05:27-07:00</dc:date>
      <pubDate>2008-06-25T16:05:27-07:00</pubDate>
      <source url="http://dn.codegear.com/article/28325/feed">Comments for Encrypting and Decrypting strings in Delphi.</source>
    </item>
    <item>
      <description><![CDATA[Thanks Aniket,A simple modification for good results.  Cheers.Robin.]]></description>
      <title><![CDATA[re: Encrypting and Decrypting strings in Delphi.::Modification]]></title>
      <managingEditor>
	 (Robin Martain)
</managingEditor>
      <guid isPermaLink="true">http://threads.codegear.com/threads/threads.exe/view?commentid=39052</guid>
      <dc:date>2006-05-14T21:12:50-07:00</dc:date>
      <pubDate>2006-05-14T21:12:50-07:00</pubDate>
      <source url="http://dn.codegear.com/article/28325/feed">Comments for Encrypting and Decrypting strings in Delphi.</source>
    </item>
    <item>
      <description><![CDATA[If the encrypted string contains a #0, it will be cut at that position when assigned to Edit1.Text, as this is handled as a C string. So you cannot encode strings that contain #255 (ÿ).]]></description>
      <title><![CDATA[Encrypting and Decrypting strings in Delphi.]]></title>
      <managingEditor>
	 (Roland Illig)
</managingEditor>
      <guid isPermaLink="true">http://threads.codegear.com/threads/threads.exe/view?commentid=34398</guid>
      <dc:date>2003-04-03T07:32:40-07:00</dc:date>
      <pubDate>2003-04-03T07:32:40-07:00</pubDate>
      <source url="http://dn.codegear.com/article/28325/feed">Comments for Encrypting and Decrypting strings in Delphi.</source>
    </item>
    <item>
      <description><![CDATA[This method would be more effective if modified slightly. Following is the modified version of EnDeCrypt function. It makes the resultant character dependent on position so Strings like 'AAAAA' generates different characters for each 'A'.function TForm1.EnDeCrypt(const Value : String) : String;var  CharIndex : integer;begin  Result := Value;  for CharIndex := 1 to Length(Value) do    Result[CharIndex] := chr(not(ord(Value[CharIndex]) + CharIndex ));end;]]></description>
      <title><![CDATA[Encrypting and Decrypting strings in Delphi.::Modification]]></title>
      <managingEditor>
	 (Aniket Bhatt)
</managingEditor>
      <guid isPermaLink="true">http://threads.codegear.com/threads/threads.exe/view?commentid=34076</guid>
      <dc:date>2003-02-10T00:53:20-08:00</dc:date>
      <pubDate>2003-02-10T00:53:20-08:00</pubDate>
      <source url="http://dn.codegear.com/article/28325/feed">Comments for Encrypting and Decrypting strings in Delphi.</source>
    </item>
    <generator>Atom 1.0 XSLT Transform v1 (http://atom.geekhood.net)</generator>
  </channel>
</rss>