<?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: As3Crypto &#8211; ActionScript 3 Cryptography Library</title>
	<atom:link href="http://www.flexer.info/2007/11/27/as3crypto-actionscript-3-cryptography-library/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.flexer.info/2007/11/27/as3crypto-actionscript-3-cryptography-library/</link>
	<description>flex developers web corner</description>
	<lastBuildDate>Wed, 18 Jan 2012 13:28:25 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: feroz pasha</title>
		<link>http://www.flexer.info/2007/11/27/as3crypto-actionscript-3-cryptography-library/comment-page-1/#comment-2052</link>
		<dc:creator>feroz pasha</dc:creator>
		<pubDate>Wed, 10 Aug 2011 10:50:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.flexer.info/2007/11/27/as3crypto-actionscript-3-cryptography-library/#comment-2052</guid>
		<description>in actionscript can we do AES ENCRYPTION WITH PKCS7 padding

if yes.
 
please help me out</description>
		<content:encoded><![CDATA[<p>in actionscript can we do AES ENCRYPTION WITH PKCS7 padding</p>
<p>if yes.</p>
<p>please help me out</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Security Tips</title>
		<link>http://www.flexer.info/2007/11/27/as3crypto-actionscript-3-cryptography-library/comment-page-1/#comment-1826</link>
		<dc:creator>Security Tips</dc:creator>
		<pubDate>Thu, 25 Feb 2010 15:10:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.flexer.info/2007/11/27/as3crypto-actionscript-3-cryptography-library/#comment-1826</guid>
		<description>Hello DearAndrei Ionescu. You post very useful URL. 
Thanks a lot.

By the way, I just came across a good article on Cryptography. &lt;a href=&quot;http://www.adminkernel.com/security/cryptography&quot; rel=&quot;nofollow&quot;&gt;Click this link&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>Hello DearAndrei Ionescu. You post very useful URL.<br />
Thanks a lot.</p>
<p>By the way, I just came across a good article on Cryptography. <a target="_blank" href="http://www.adminkernel.com/security/cryptography" rel="nofollow">Click this link</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Deepthi</title>
		<link>http://www.flexer.info/2007/11/27/as3crypto-actionscript-3-cryptography-library/comment-page-1/#comment-1684</link>
		<dc:creator>Deepthi</dc:creator>
		<pubDate>Sat, 15 Aug 2009 06:11:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.flexer.info/2007/11/27/as3crypto-actionscript-3-cryptography-library/#comment-1684</guid>
		<description>I would be grateful if u can write a program on encrypt nd decrypting the text in flexbuilder3</description>
		<content:encoded><![CDATA[<p>I would be grateful if u can write a program on encrypt nd decrypting the text in flexbuilder3</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Deepthi</title>
		<link>http://www.flexer.info/2007/11/27/as3crypto-actionscript-3-cryptography-library/comment-page-1/#comment-1683</link>
		<dc:creator>Deepthi</dc:creator>
		<pubDate>Sat, 15 Aug 2009 05:21:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.flexer.info/2007/11/27/as3crypto-actionscript-3-cryptography-library/#comment-1683</guid>
		<description>I would be very grateful if u suggest me how to write a program on encryption and decryption in flex</description>
		<content:encoded><![CDATA[<p>I would be very grateful if u suggest me how to write a program on encryption and decryption in flex</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrei Ionescu</title>
		<link>http://www.flexer.info/2007/11/27/as3crypto-actionscript-3-cryptography-library/comment-page-1/#comment-1682</link>
		<dc:creator>Andrei Ionescu</dc:creator>
		<pubDate>Thu, 13 Aug 2009 11:49:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.flexer.info/2007/11/27/as3crypto-actionscript-3-cryptography-library/#comment-1682</guid>
		<description>To reverse a string do this:
&lt;pre lang=&quot;actionscript&quot;&gt;var reverseStr:String = normalStr.split(&quot;&quot;).reverse().join(&quot;&quot;);&lt;/pre&gt;
Is that simple! :)</description>
		<content:encoded><![CDATA[<p>To reverse a string do this:</p>

<div class="wp_syntax"><div class="code"><pre class="actionscript" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">var</span> reverseStr:<span style="color: #0066CC;">String</span> = normalStr.<span style="color: #0066CC;">split</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;&quot;</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #0066CC;">reverse</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #0066CC;">join</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;&quot;</span><span style="color: #66cc66;">&#41;</span>;</pre></div></div>

<p>Is that simple! <img src='http://www.flexer.info/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mahesh</title>
		<link>http://www.flexer.info/2007/11/27/as3crypto-actionscript-3-cryptography-library/comment-page-1/#comment-1681</link>
		<dc:creator>mahesh</dc:creator>
		<pubDate>Thu, 13 Aug 2009 11:36:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.flexer.info/2007/11/27/as3crypto-actionscript-3-cryptography-library/#comment-1681</guid>
		<description>msg={this is flex}
i would like to have the string in reverse i.e
xelf si siht</description>
		<content:encoded><![CDATA[<p>msg={this is flex}<br />
i would like to have the string in reverse i.e<br />
xelf si siht</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mahesh</title>
		<link>http://www.flexer.info/2007/11/27/as3crypto-actionscript-3-cryptography-library/comment-page-1/#comment-1672</link>
		<dc:creator>mahesh</dc:creator>
		<pubDate>Sun, 09 Aug 2009 04:14:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.flexer.info/2007/11/27/as3crypto-actionscript-3-cryptography-library/#comment-1672</guid>
		<description>how to reverse a string in flex 3
i need this to do encryption</description>
		<content:encoded><![CDATA[<p>how to reverse a string in flex 3<br />
i need this to do encryption</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Barry Comer</title>
		<link>http://www.flexer.info/2007/11/27/as3crypto-actionscript-3-cryptography-library/comment-page-1/#comment-1650</link>
		<dc:creator>Barry Comer</dc:creator>
		<pubDate>Mon, 06 Jul 2009 15:47:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.flexer.info/2007/11/27/as3crypto-actionscript-3-cryptography-library/#comment-1650</guid>
		<description>Is it possible to extract the digest from a credential file sing this library?</description>
		<content:encoded><![CDATA[<p>Is it possible to extract the digest from a credential file sing this library?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BubbleBoy</title>
		<link>http://www.flexer.info/2007/11/27/as3crypto-actionscript-3-cryptography-library/comment-page-1/#comment-1634</link>
		<dc:creator>BubbleBoy</dc:creator>
		<pubDate>Tue, 23 Jun 2009 12:41:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.flexer.info/2007/11/27/as3crypto-actionscript-3-cryptography-library/#comment-1634</guid>
		<description>Sigh. I have now spent 5 hours on this library. And I am quite good with as3/flex. I have tried reading up on wikipedia the different stuff etc, but I still don&#039;t understand how to use the RSA. The Crypto.as (i.e the example class) lacks an implementation of RSA, and the functions in the RSA-class doesn ot have names that makes it any clearer. What are the different parameters: N, E, D, P, Q,DP, DQ, C? No documentation anywhere, no example anywhere? 

I would love to have something like: 
&lt;pre lang=&quot;actionscript&quot;&gt;msg = &quot;hello my secret lover&quot;;
encryptedMsg = Rsa.encrypt (msg, publicKey);
Rsa.decrypt (encryptedMsg, privateKey);&lt;/pre&gt;
but i cant find anything like it anywhere? 

Would be very grateful for any advice or suggestions on how to get started</description>
		<content:encoded><![CDATA[<p>Sigh. I have now spent 5 hours on this library. And I am quite good with as3/flex. I have tried reading up on wikipedia the different stuff etc, but I still don&#8217;t understand how to use the RSA. The Crypto.as (i.e the example class) lacks an implementation of RSA, and the functions in the RSA-class doesn ot have names that makes it any clearer. What are the different parameters: N, E, D, P, Q,DP, DQ, C? No documentation anywhere, no example anywhere? </p>
<p>I would love to have something like:</p>

<div class="wp_syntax"><div class="code"><pre class="actionscript" style="font-family:monospace;">msg = <span style="color: #ff0000;">&quot;hello my secret lover&quot;</span>;
encryptedMsg = Rsa.<span style="color: #006600;">encrypt</span> <span style="color: #66cc66;">&#40;</span>msg, publicKey<span style="color: #66cc66;">&#41;</span>;
Rsa.<span style="color: #006600;">decrypt</span> <span style="color: #66cc66;">&#40;</span>encryptedMsg, privateKey<span style="color: #66cc66;">&#41;</span>;</pre></div></div>

<p>but i cant find anything like it anywhere? </p>
<p>Would be very grateful for any advice or suggestions on how to get started</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Phil</title>
		<link>http://www.flexer.info/2007/11/27/as3crypto-actionscript-3-cryptography-library/comment-page-1/#comment-901</link>
		<dc:creator>Phil</dc:creator>
		<pubDate>Thu, 06 Nov 2008 23:48:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.flexer.info/2007/11/27/as3crypto-actionscript-3-cryptography-library/#comment-901</guid>
		<description>Paul, Ive had real trouble getting PHP to talk to AS3Crypto - i just cant seem to get AS3crypto to verify my Digital Sig generated by PHP</description>
		<content:encoded><![CDATA[<p>Paul, Ive had real trouble getting PHP to talk to AS3Crypto &#8211; i just cant seem to get AS3crypto to verify my Digital Sig generated by PHP</p>
]]></content:encoded>
	</item>
</channel>
</rss>

