<?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: AES Cryptography for Actionscript &amp; PHP</title>
	<atom:link href="http://lostinactionscript.com/2009/11/29/aes-cryptography-for-actionscript-php/feed/" rel="self" type="application/rss+xml" />
	<link>http://lostinactionscript.com/2009/11/29/aes-cryptography-for-actionscript-php/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=aes-cryptography-for-actionscript-php</link>
	<description>Lost In Actionscript</description>
	<lastBuildDate>Thu, 19 Jan 2012 22:32:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Rafarel</title>
		<link>http://lostinactionscript.com/2009/11/29/aes-cryptography-for-actionscript-php/comment-page-1/#comment-2846</link>
		<dc:creator>Rafarel</dc:creator>
		<pubDate>Fri, 13 Jan 2012 18:28:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.lostinactionscript.com/?p=296#comment-2846</guid>
		<description>Error fixed, it was not your code.
Sorry, again great job !</description>
		<content:encoded><![CDATA[<p>Error fixed, it was not your code.<br />
Sorry, again great job !</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rafarel</title>
		<link>http://lostinactionscript.com/2009/11/29/aes-cryptography-for-actionscript-php/comment-page-1/#comment-2845</link>
		<dc:creator>Rafarel</dc:creator>
		<pubDate>Fri, 13 Jan 2012 01:16:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.lostinactionscript.com/?p=296#comment-2845</guid>
		<description>Hello Shane !

Very usefull post, so I decided to download &amp; test your AES Class.

I have an  error in utf8 encode method but I don&#039;t know how to fix it... Any idea ?

TypeError: Error #1009: Il est impossible d&#039;accéder à la propriété ou à la méthode d&#039;une référence d&#039;objet nul.
	at Utf8$/encode()
	at rafarel.utils::AES$/encrypt()</description>
		<content:encoded><![CDATA[<p>Hello Shane !</p>
<p>Very usefull post, so I decided to download &amp; test your AES Class.</p>
<p>I have an  error in utf8 encode method but I don&#8217;t know how to fix it&#8230; Any idea ?</p>
<p>TypeError: Error #1009: Il est impossible d&#8217;accéder à la propriété ou à la méthode d&#8217;une référence d&#8217;objet nul.<br />
	at Utf8$/encode()<br />
	at rafarel.utils::AES$/encrypt()</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: luchaos</title>
		<link>http://lostinactionscript.com/2009/11/29/aes-cryptography-for-actionscript-php/comment-page-1/#comment-2842</link>
		<dc:creator>luchaos</dc:creator>
		<pubDate>Fri, 11 Nov 2011 14:37:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.lostinactionscript.com/?p=296#comment-2842</guid>
		<description>here&#039;s another good read about using AES 256 bit in PHP if really needed and that AES/Rijndael 128bit are the same but with 256bit aren&#039;t: http://kix.in/2008/07/22/aes-256-using-php-mcrypt/#comment-1371</description>
		<content:encoded><![CDATA[<p>here&#8217;s another good read about using AES 256 bit in PHP if really needed and that AES/Rijndael 128bit are the same but with 256bit aren&#8217;t: <a href="http://kix.in/2008/07/22/aes-256-using-php-mcrypt/#comment-1371" rel="nofollow">http://kix.in/2008/07/22/aes-256-using-php-mcrypt/#comment-1371</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: luchaos</title>
		<link>http://lostinactionscript.com/2009/11/29/aes-cryptography-for-actionscript-php/comment-page-1/#comment-2841</link>
		<dc:creator>luchaos</dc:creator>
		<pubDate>Fri, 11 Nov 2011 14:16:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.lostinactionscript.com/?p=296#comment-2841</guid>
		<description>hi, awesome post - very informative! interesting how often ports of the mentioned JS implementation are leading to the desired results.

Just shortly before I was giving up on as3crypto I got it running with following setup using PHP&#039;s mcrypt:

AES (flash) / RIJNDAEL (php) 128bit ECB mode with a 16 characters key. Didn&#039;t try with different settings though, after that proved to be working.
(Note that a &quot;manual&quot; pkcs5 unpadding is necessary in PHP to avoid garbage trailing the decrypted message: http://www.php.net/manual/en/ref.mcrypt.php#69782)

Coming to 256bit with differing key lengths I&#039;ll be better of with your implementation I presume. Thanks!</description>
		<content:encoded><![CDATA[<p>hi, awesome post &#8211; very informative! interesting how often ports of the mentioned JS implementation are leading to the desired results.</p>
<p>Just shortly before I was giving up on as3crypto I got it running with following setup using PHP&#8217;s mcrypt:</p>
<p>AES (flash) / RIJNDAEL (php) 128bit ECB mode with a 16 characters key. Didn&#8217;t try with different settings though, after that proved to be working.<br />
(Note that a &#8220;manual&#8221; pkcs5 unpadding is necessary in PHP to avoid garbage trailing the decrypted message: <a href="http://www.php.net/manual/en/ref.mcrypt.php#69782" rel="nofollow">http://www.php.net/manual/en/ref.mcrypt.php#69782</a>)</p>
<p>Coming to 256bit with differing key lengths I&#8217;ll be better of with your implementation I presume. Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jgondek</title>
		<link>http://lostinactionscript.com/2009/11/29/aes-cryptography-for-actionscript-php/comment-page-1/#comment-2838</link>
		<dc:creator>jgondek</dc:creator>
		<pubDate>Thu, 27 Oct 2011 10:02:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.lostinactionscript.com/?p=296#comment-2838</guid>
		<description>I&#039;m having problem with sending crypted JSON objects to AMFPHP - in random cases the crypted string contains a newline character &#039;\n&#039; which ruins decryption on the server side. Have you ever experienced that? Any ideas how to fix it?</description>
		<content:encoded><![CDATA[<p>I&#8217;m having problem with sending crypted JSON objects to AMFPHP &#8211; in random cases the crypted string contains a newline character &#8216;\n&#8217; which ruins decryption on the server side. Have you ever experienced that? Any ideas how to fix it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Happy Day</title>
		<link>http://lostinactionscript.com/2009/11/29/aes-cryptography-for-actionscript-php/comment-page-1/#comment-2792</link>
		<dc:creator>Happy Day</dc:creator>
		<pubDate>Sat, 09 Jul 2011 05:18:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.lostinactionscript.com/?p=296#comment-2792</guid>
		<description>&quot;I hope this is sunshine on a rainny day for someone out there...&quot;

THANK YOU!</description>
		<content:encoded><![CDATA[<p>&#8220;I hope this is sunshine on a rainny day for someone out there&#8230;&#8221;</p>
<p>THANK YOU!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: junak</title>
		<link>http://lostinactionscript.com/2009/11/29/aes-cryptography-for-actionscript-php/comment-page-1/#comment-2769</link>
		<dc:creator>junak</dc:creator>
		<pubDate>Tue, 22 Mar 2011 19:37:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.lostinactionscript.com/?p=296#comment-2769</guid>
		<description>Great post. I have a stupid question how can I download php files ? Those are not included in archive
ex. http://code.flashdynamix.com/AES/aes-encrypt.php</description>
		<content:encoded><![CDATA[<p>Great post. I have a stupid question how can I download php files ? Those are not included in archive<br />
ex. <a href="http://code.flashdynamix.com/AES/aes-encrypt.php" rel="nofollow">http://code.flashdynamix.com/AES/aes-encrypt.php</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shane McCartney</title>
		<link>http://lostinactionscript.com/2009/11/29/aes-cryptography-for-actionscript-php/comment-page-1/#comment-2766</link>
		<dc:creator>Shane McCartney</dc:creator>
		<pubDate>Sun, 27 Feb 2011 17:13:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.lostinactionscript.com/?p=296#comment-2766</guid>
		<description>Sure you can, it all depends on what you need to accomplish on the server-side if decryption is necessary.</description>
		<content:encoded><![CDATA[<p>Sure you can, it all depends on what you need to accomplish on the server-side if decryption is necessary.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alan</title>
		<link>http://lostinactionscript.com/2009/11/29/aes-cryptography-for-actionscript-php/comment-page-1/#comment-2765</link>
		<dc:creator>Alan</dc:creator>
		<pubDate>Sat, 26 Feb 2011 01:43:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.lostinactionscript.com/?p=296#comment-2765</guid>
		<description>Why shouldn&#039;t we encrypt/decrypt data with AES on client side only, do not care about PHP or server side? So we will have data encrypted not only on the fly but also in the database.</description>
		<content:encoded><![CDATA[<p>Why shouldn&#8217;t we encrypt/decrypt data with AES on client side only, do not care about PHP or server side? So we will have data encrypted not only on the fly but also in the database.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Huang Xinhao</title>
		<link>http://lostinactionscript.com/2009/11/29/aes-cryptography-for-actionscript-php/comment-page-1/#comment-2742</link>
		<dc:creator>Huang Xinhao</dc:creator>
		<pubDate>Sun, 14 Nov 2010 03:43:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.lostinactionscript.com/?p=296#comment-2742</guid>
		<description>greate job. thanks.</description>
		<content:encoded><![CDATA[<p>greate job. thanks.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.590 seconds -->

