<?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: Encryption in AS2 and AS3</title>
	<atom:link href="http://www.svendens.com/actionscript/encryption-in-as2-and-as3/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.svendens.com/actionscript/encryption-in-as2-and-as3/</link>
	<description>deserialize me</description>
	<lastBuildDate>Thu, 19 Aug 2010 12:47:01 +0200</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: yalcin</title>
		<link>http://www.svendens.com/actionscript/encryption-in-as2-and-as3/comment-page-1/#comment-3173</link>
		<dc:creator>yalcin</dc:creator>
		<pubDate>Thu, 19 Aug 2010 12:47:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.svendens.be/blog/archives/8#comment-3173</guid>
		<description>utf8 support required.. :(</description>
		<content:encoded><![CDATA[<p>utf8 support required.. <img src='http://www.svendens.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dean</title>
		<link>http://www.svendens.com/actionscript/encryption-in-as2-and-as3/comment-page-1/#comment-33</link>
		<dc:creator>Dean</dc:creator>
		<pubDate>Mon, 20 Oct 2008 15:38:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.svendens.be/blog/archives/8#comment-33</guid>
		<description>Hi Sven,

I would like to use this Encryption code but the download link is down. Do you have an other download location?
Thanks in advance.</description>
		<content:encoded><![CDATA[<p>Hi Sven,</p>
<p>I would like to use this Encryption code but the download link is down. Do you have an other download location?<br />
Thanks in advance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Forrest Gump</title>
		<link>http://www.svendens.com/actionscript/encryption-in-as2-and-as3/comment-page-1/#comment-11</link>
		<dc:creator>Forrest Gump</dc:creator>
		<pubDate>Thu, 10 Jan 2008 12:08:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.svendens.be/blog/archives/8#comment-11</guid>
		<description>Yes, I have the same problem with russian. During my investingation I found that meychi classes doesnt support utf8 encoding wich is needed when you use languages other than english...

Have anyone seen encryption classes for asctionscript2-3 with utf8 support?</description>
		<content:encoded><![CDATA[<p>Yes, I have the same problem with russian. During my investingation I found that meychi classes doesnt support utf8 encoding wich is needed when you use languages other than english&#8230;</p>
<p>Have anyone seen encryption classes for asctionscript2-3 with utf8 support?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joe</title>
		<link>http://www.svendens.com/actionscript/encryption-in-as2-and-as3/comment-page-1/#comment-10</link>
		<dc:creator>Joe</dc:creator>
		<pubDate>Fri, 30 Nov 2007 17:41:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.svendens.be/blog/archives/8#comment-10</guid>
		<description>And, of course, in the decrypt function, I had to use unescape on the return string to get all my characters back to normal.</description>
		<content:encoded><![CDATA[<p>And, of course, in the decrypt function, I had to use unescape on the return string to get all my characters back to normal.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joe</title>
		<link>http://www.svendens.com/actionscript/encryption-in-as2-and-as3/comment-page-1/#comment-8</link>
		<dc:creator>Joe</dc:creator>
		<pubDate>Fri, 30 Nov 2007 17:27:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.svendens.be/blog/archives/8#comment-8</guid>
		<description>I had the same problem with my Asian characters failing encryption/decryption using the TEA encryption.  I checked out the original Javascript source, and in that code the input string is escaped, so to the TEA.as script here, I added as the first line of the encrypt function:
var asciitext:String = escape(src);

Now the encryption/decryption works like a charm with Asian characters just as it does with English characters.

Thanks, Sven, for this excellent and highly useful solution!</description>
		<content:encoded><![CDATA[<p>I had the same problem with my Asian characters failing encryption/decryption using the TEA encryption.  I checked out the original Javascript source, and in that code the input string is escaped, so to the TEA.as script here, I added as the first line of the encrypt function:<br />
var asciitext:String = escape(src);</p>
<p>Now the encryption/decryption works like a charm with Asian characters just as it does with English characters.</p>
<p>Thanks, Sven, for this excellent and highly useful solution!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pablo</title>
		<link>http://www.svendens.com/actionscript/encryption-in-as2-and-as3/comment-page-1/#comment-9</link>
		<dc:creator>Pablo</dc:creator>
		<pubDate>Thu, 15 Nov 2007 17:15:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.svendens.be/blog/archives/8#comment-9</guid>
		<description>Hi

I have tried the AS3 BASE64 and the encryption and decryption is working great! BUT I get a lot of warnings! Is it some thing I should care about or not?

I get the following types of warnings:

Warning: 1012: Variables of type Number cannot be undefined. The value undefined will be type coerced to Number before comparison.
Warning: 1102: null used where a Number value was expected.
Warning: 3596: Duplicate variable definition.

Totally I get 15 Warnings...thus the trace output is correct regards the ecrypted and decrypted data...

Kind regards,
Pablo</description>
		<content:encoded><![CDATA[<p>Hi</p>
<p>I have tried the AS3 BASE64 and the encryption and decryption is working great! BUT I get a lot of warnings! Is it some thing I should care about or not?</p>
<p>I get the following types of warnings:</p>
<p>Warning: 1012: Variables of type Number cannot be undefined. The value undefined will be type coerced to Number before comparison.<br />
Warning: 1102: null used where a Number value was expected.<br />
Warning: 3596: Duplicate variable definition.</p>
<p>Totally I get 15 Warnings&#8230;thus the trace output is correct regards the ecrypted and decrypted data&#8230;</p>
<p>Kind regards,<br />
Pablo</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gerard</title>
		<link>http://www.svendens.com/actionscript/encryption-in-as2-and-as3/comment-page-1/#comment-12</link>
		<dc:creator>Gerard</dc:creator>
		<pubDate>Fri, 12 Oct 2007 11:06:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.svendens.be/blog/archives/8#comment-12</guid>
		<description>Hi there
just came across your wrapper class ASCrypt and it looks very useful indeed.

My problem is that I cant get php/Mcrypt to encrypt content that ASCrypt will decode successfully....
I;m trying both TEA and Rijndael as they look the most secure for my purposes.

Any pointers would be appreciated :)
Thanks
Gerard</description>
		<content:encoded><![CDATA[<p>Hi there<br />
just came across your wrapper class ASCrypt and it looks very useful indeed.</p>
<p>My problem is that I cant get php/Mcrypt to encrypt content that ASCrypt will decode successfully&#8230;.<br />
I;m trying both TEA and Rijndael as they look the most secure for my purposes.</p>
<p>Any pointers would be appreciated <img src='http://www.svendens.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Thanks<br />
Gerard</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chuyue</title>
		<link>http://www.svendens.com/actionscript/encryption-in-as2-and-as3/comment-page-1/#comment-7</link>
		<dc:creator>Chuyue</dc:creator>
		<pubDate>Fri, 10 Aug 2007 08:55:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.svendens.be/blog/archives/8#comment-7</guid>
		<description>I think it&#039;used to encrypt the string vars.But not the source code.Right?(also frome china)</description>
		<content:encoded><![CDATA[<p>I think it&#8217;used to encrypt the string vars.But not the source code.Right?(also frome china)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: youyee</title>
		<link>http://www.svendens.com/actionscript/encryption-in-as2-and-as3/comment-page-1/#comment-6</link>
		<dc:creator>youyee</dc:creator>
		<pubDate>Mon, 06 Aug 2007 03:07:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.svendens.be/blog/archives/8#comment-6</guid>
		<description>String before encryption: ä¸­å›½è¯­ chinese

String after RC4 encryption: undefineddundefined8undefined5424f766501fe50b1
String after RC4 decryption: PÃ«7bÃ±Ã’`Â›Ã»Ã”nÃ—fTÂ¶\8CÂ£

String after Base8 encoding: 4e2d56fd8bed206368696e657365
String after Base8 decoding: N-VÃ½Â‹Ã­ chinese

String after Base64 encoding: tIGNoaW5lc2U=
String after Base64 decoding: Â´ÂÂÂ¡Â¥Â¹Â•ÃÂ”Ä€
String after Goauld calculation: ä¸«å›»è¯«&amp;enohcuc

String after MD5 calculation: cf729ada29f396f2061b19ec72f4a560

String after ROT13 calculation: ä¸­å›½è¯­ puvarfr

String after SHA1 calculation: 989458983d7b646306f37599830e4d5daa75b78a

String after TEA encryption: 79de0e9adaaa67bdded940cb
String after TEA decryption: -KDÂ¬chinese
String after Rijndael encryption: 6bc5a391b5fa07eca44c77255f0632db892e8a8aa81fad1b2aa1d6e375bc8b52b89e896d622982013f3b8d6e290731e7f250c7c6123c508341ff066c0ddf415e
String after Rijndael decryption: Â¥Ã‚ chinese</description>
		<content:encoded><![CDATA[<p>String before encryption: ä¸­å›½è¯­ chinese</p>
<p>String after RC4 encryption: undefineddundefined8undefined5424f766501fe50b1<br />
String after RC4 decryption: PÃ«7bÃ±Ã’`Â›Ã»Ã”nÃ—fTÂ¶\8CÂ£</p>
<p>String after Base8 encoding: 4e2d56fd8bed206368696e657365<br />
String after Base8 decoding: N-VÃ½Â‹Ã­ chinese</p>
<p>String after Base64 encoding: tIGNoaW5lc2U=<br />
String after Base64 decoding: Â´ÂÂÂ¡Â¥Â¹Â•ÃÂ”Ä€<br />
String after Goauld calculation: ä¸«å›»è¯«&amp;enohcuc</p>
<p>String after MD5 calculation: cf729ada29f396f2061b19ec72f4a560</p>
<p>String after ROT13 calculation: ä¸­å›½è¯­ puvarfr</p>
<p>String after SHA1 calculation: 989458983d7b646306f37599830e4d5daa75b78a</p>
<p>String after TEA encryption: 79de0e9adaaa67bdded940cb<br />
String after TEA decryption: -KDÂ¬chinese<br />
String after Rijndael encryption: 6bc5a391b5fa07eca44c77255f0632db892e8a8aa81fad1b2aa1d6e375bc8b52b89e896d622982013f3b8d6e290731e7f250c7c6123c508341ff066c0ddf415e<br />
String after Rijndael decryption: Â¥Ã‚ chinese</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: youyee</title>
		<link>http://www.svendens.com/actionscript/encryption-in-as2-and-as3/comment-page-1/#comment-5</link>
		<dc:creator>youyee</dc:creator>
		<pubDate>Mon, 06 Aug 2007 02:56:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.svendens.be/blog/archives/8#comment-5</guid>
		<description>you can test these word:&quot;ä¸­å›½è¯­ chinese&quot;ï¼Œencrypt it and decrypt it,the result will not as same as the source word.</description>
		<content:encoded><![CDATA[<p>you can test these word:&#8221;ä¸­å›½è¯­ chinese&#8221;ï¼Œencrypt it and decrypt it,the result will not as same as the source word.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
