Lorenz,<div><br></div><div>Well, I&#39;ve experimented with ByteArray.writeUTFBytes( &#39;testtest&#39; ) to avoid the Hex utility library and it&#39;s given me the same results.</div><div><br></div><div>I don&#39;t think that is the issue, if you have pycrypto installed would you be able to run the code to encrypt and base64 the string? You could copy and paste it verbatim into idle, wouldn&#39;t be much work at all and it would really help me out if I knew what the expected output of the python library should be.</div>
<div><br></div><div>Thanks</div><div>Joshua<br><br><div class="gmail_quote">On Wed, Jan 12, 2011 at 11:45 AM, Lorenz Quack <span dir="ltr">&lt;<a href="mailto:don@amberfisharts.com">don@amberfisharts.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">Hey Joshua,<br>
<br>
I haven&#39;t used as3crypto (or any as3 for that matter) nor the pycrypto.blowfish. So basicly I&#39;m just wildly guessing<br>
here. I was wondering if you made sure that this &quot;Hex&quot; thing in your as3 code isn&#39;t messing up things?<br>
because in you base64 test you don&#39;t use that.<br>
<br>
cheers,<br>
//Lorenz<br>
<div><div></div><div class="h5"><br>
<br>
On 01/12/2011 08:07 PM, Joshua Strauss wrote:<br>
&gt; I&#39;m trying to use symmetric encryption to pass data from actionscript 3 (client) to python (server).<br>
&gt;<br>
&gt; The libraries I&#39;m using are as3crypto and pycrypto.<br>
&gt;<br>
&gt; I&#39;m not sure if I&#39;m using these libraries correctly, here&#39;s the action script 3 code.<br>
&gt;<br>
&gt; private function testOnInit():void {<br>
&gt; var t_toEnc:String = &#39;testtest&#39;;<br>
&gt; var t_byAry:ByteArray = Hex.toArray( Hex.fromString( t_toEnc ) );<br>
&gt; var t_key:ByteArray = Hex.toArray( Hex.fromString( &#39;Thisisthekey&#39; ) );<br>
&gt; var t_cbc:CBCMode = new CBCMode( new BlowFishKey( t_key ), new NullPad );<br>
&gt; var t_enc:String;<br>
&gt; t_cbc.IV = Hex.toArray( &#39;30313233&#39; );<br>
&gt; t_cbc.encrypt( t_byAry );<br>
&gt; t_enc = Base64.encodeByteArray( t_byAry );<br>
&gt; dbg( &#39;b64 encrypted string &#39; + t_enc ); //this is just a debugging function we use in our code.<br>
&gt; }<br>
&gt;<br>
&gt; This is the base64 encoded output of the function above.<br>
&gt;<br>
&gt; xvVqLzV5TU4=<br>
&gt;<br>
&gt; Now, using the same key, initialization vector, and algorithm from the pycrypto library gives me different output.<br>
&gt;<br>
&gt; Here&#39;s the python code.<br>
&gt;<br>
&gt;  &gt;&gt;&gt; from Crypto.Cipher import Blowfish<br>
&gt;  &gt;&gt;&gt; B = Blowfish.new( &#39;Thisisthekey&#39;, Blowfish.MODE_CBC, &#39;30313233&#39; )<br>
&gt;  &gt;&gt;&gt; S = &#39;testtest&#39;<br>
&gt;  &gt;&gt;&gt; X = B.encrypt( S )<br>
&gt;  &gt;&gt;&gt; import base64<br>
&gt;  &gt;&gt;&gt; Y = base64.b64encode( X )<br>
&gt;  &gt;&gt;&gt; print Y<br>
&gt;<br>
&gt; I82NQEkSHhE=<br>
&gt;<br>
&gt; I&#39;m pretty sure that I&#39;m doing something wrong with the encryption process because I can base64 encode &#39;testtest&#39; on<br>
&gt; both libraries and receive the same output.<br>
&gt;<br>
&gt; Here&#39;s as3<br>
&gt;<br>
&gt; var b:ByteArray = new ByteArray();<br>
&gt; b.writeUTFBytes( &#39;testtest&#39; );<br>
&gt; dbg( Base64.encodeByteArray( b ) );<br>
&gt;<br>
&gt; Yields...<br>
&gt;<br>
&gt; dGVzdHRlc3Q=<br>
&gt;<br>
&gt; Here&#39;s the python<br>
&gt;<br>
&gt;  &gt;&gt;&gt; T = &#39;testtest&#39;<br>
&gt;  &gt;&gt;&gt; print base64.b64encode( T )<br>
&gt;<br>
&gt; Yields…<br>
&gt;<br>
&gt; dGVzdHRlc3Q=<br>
&gt;<br>
&gt; Could someone please encrypt and base64encode the same string with the same IV in either python or actionscript, so I<br>
&gt; know which library is actually producing the correct output?<br>
&gt;<br>
&gt; Any assistance with this problem would be greatly appreciated, I&#39;m stuck and don&#39;t know how to proceed from here.<br>
&gt;<br>
&gt; Thank you<br>
&gt; Joshua<br>
&gt;<br>
<br>
</div></div>_______________________________________________<br>
pycrypto mailing list<br>
<a href="mailto:pycrypto@lists.dlitz.net">pycrypto@lists.dlitz.net</a><br>
<a href="http://lists.dlitz.net/cgi-bin/mailman/listinfo/pycrypto" target="_blank">http://lists.dlitz.net/cgi-bin/mailman/listinfo/pycrypto</a><br>
</blockquote></div><br></div>