<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Simple XOR Encryption Algorithm</title>
	<atom:link href="http://area72.ro/programming/simple-xor-encryption.html/feed" rel="self" type="application/rss+xml" />
	<link>http://area72.ro/programming/simple-xor-encryption.html</link>
	<description></description>
	<lastBuildDate>Wed, 21 Sep 2011 12:30:11 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
<meta xmlns="http://www.w3.org/1999/xhtml" name="robots" content="noindex,follow" />
	<item>
		<title>By: Andrey</title>
		<link>http://area72.ro/programming/simple-xor-encryption.html/comment-page-1#comment-2194</link>
		<dc:creator>Andrey</dc:creator>
		<pubDate>Tue, 07 Sep 2010 10:19:41 +0000</pubDate>
		<guid isPermaLink="false">http://area72.ro/?p=53#comment-2194</guid>
		<description>Well a bit more information can be found on &lt;a href=&quot;http://en.wikipedia.org/wiki/XOR_cipher&quot; rel=&quot;nofollow&quot;&gt;wiki&lt;/a&gt;, its a simple encryption algorithm that will suffice in most cases.</description>
		<content:encoded><![CDATA[<p>Well a bit more information can be found on <a href="http://en.wikipedia.org/wiki/XOR_cipher" rel="nofollow">wiki</a>, its a simple encryption algorithm that will suffice in most cases.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim Koh</title>
		<link>http://area72.ro/programming/simple-xor-encryption.html/comment-page-1#comment-2183</link>
		<dc:creator>Tim Koh</dc:creator>
		<pubDate>Tue, 07 Sep 2010 03:00:18 +0000</pubDate>
		<guid isPermaLink="false">http://area72.ro/?p=53#comment-2183</guid>
		<description>Dear sir

I would like to find out more on XOR, possible to send me more articles or information about this  encryption algorithm.

Thank you</description>
		<content:encoded><![CDATA[<p>Dear sir</p>
<p>I would like to find out more on XOR, possible to send me more articles or information about this  encryption algorithm.</p>
<p>Thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: unelosle</title>
		<link>http://area72.ro/programming/simple-xor-encryption.html/comment-page-1#comment-706</link>
		<dc:creator>unelosle</dc:creator>
		<pubDate>Fri, 07 May 2010 04:40:57 +0000</pubDate>
		<guid isPermaLink="false">http://area72.ro/?p=53#comment-706</guid>
		<description>It&#039;s a wonderful article, thanks!</description>
		<content:encoded><![CDATA[<p>It&#8217;s a wonderful article, thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ftiiansjese</title>
		<link>http://area72.ro/programming/simple-xor-encryption.html/comment-page-1#comment-641</link>
		<dc:creator>ftiiansjese</dc:creator>
		<pubDate>Sun, 02 May 2010 10:19:28 +0000</pubDate>
		<guid isPermaLink="false">http://area72.ro/?p=53#comment-641</guid>
		<description>very good information you write it very clean.</description>
		<content:encoded><![CDATA[<p>very good information you write it very clean.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrey</title>
		<link>http://area72.ro/programming/simple-xor-encryption.html/comment-page-1#comment-425</link>
		<dc:creator>Andrey</dc:creator>
		<pubDate>Fri, 19 Mar 2010 14:21:41 +0000</pubDate>
		<guid isPermaLink="false">http://area72.ro/?p=53#comment-425</guid>
		<description>It is at the left of the search field, thanks.

-Andrey</description>
		<content:encoded><![CDATA[<p>It is at the left of the search field, thanks.</p>
<p>-Andrey</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tanner Best</title>
		<link>http://area72.ro/programming/simple-xor-encryption.html/comment-page-1#comment-424</link>
		<dc:creator>Tanner Best</dc:creator>
		<pubDate>Fri, 19 Mar 2010 10:45:22 +0000</pubDate>
		<guid isPermaLink="false">http://area72.ro/?p=53#comment-424</guid>
		<description>Interesting blog you got here but I can&#039;t seem to find the RSS button.</description>
		<content:encoded><![CDATA[<p>Interesting blog you got here but I can&#8217;t seem to find the RSS button.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrey</title>
		<link>http://area72.ro/programming/simple-xor-encryption.html/comment-page-1#comment-71</link>
		<dc:creator>Andrey</dc:creator>
		<pubDate>Wed, 23 Dec 2009 18:35:06 +0000</pubDate>
		<guid isPermaLink="false">http://area72.ro/?p=53#comment-71</guid>
		<description>Let&#039;s say that you have a password stored in a variable named $password and we would like to encrypt it with the key &quot;1qazxsw2&quot; the way we do it is 

$password = encryption($password, &quot;1qazxsw2&quot;);

However if you would echo $password you will see some unrecognizable characters the proper way to use it would be :

//encryption
$password = base64_encrypt(encryption($password, &quot;1qazxsw2&quot;));
echo $password; // encrypted password

//decryption
$password = encryption(base64_decrypt($password), &quot;1qazxsw2&quot;));
echo $password; //original password</description>
		<content:encoded><![CDATA[<p>Let&#8217;s say that you have a password stored in a variable named $password and we would like to encrypt it with the key &#8220;1qazxsw2&#8243; the way we do it is </p>
<p>$password = encryption($password, &#8220;1qazxsw2&#8243;);</p>
<p>However if you would echo $password you will see some unrecognizable characters the proper way to use it would be :</p>
<p>//encryption<br />
$password = base64_encrypt(encryption($password, &#8220;1qazxsw2&#8243;));<br />
echo $password; // encrypted password</p>
<p>//decryption<br />
$password = encryption(base64_decrypt($password), &#8220;1qazxsw2&#8243;));<br />
echo $password; //original password</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Oliver Wang</title>
		<link>http://area72.ro/programming/simple-xor-encryption.html/comment-page-1#comment-69</link>
		<dc:creator>Oliver Wang</dc:creator>
		<pubDate>Tue, 22 Dec 2009 19:04:37 +0000</pubDate>
		<guid isPermaLink="false">http://area72.ro/?p=53#comment-69</guid>
		<description>Hello Andrey.

I found your little tutorial quite interesting, but i didnt really understand it 100%, so maybe if you had time ,and would like to make another example in php, where you actually use it in a script/system.

Best Regards and merry christmas from Denmark
Oliver Wang</description>
		<content:encoded><![CDATA[<p>Hello Andrey.</p>
<p>I found your little tutorial quite interesting, but i didnt really understand it 100%, so maybe if you had time ,and would like to make another example in php, where you actually use it in a script/system.</p>
<p>Best Regards and merry christmas from Denmark<br />
Oliver Wang</p>
]]></content:encoded>
	</item>
</channel>
</rss>

