我正在尝试使用对称加密将数据从 actionscript 3(客户端)传递到 python(服务器)。
我使用的库是 as3crypto 和 pycrypto,我不确定我是否正确使用了这些库。
动作脚本 3:
private function testOnInit():void {
var t_toEnc:String = 'testtest';
var t_byAry:ByteArray = Hex.toArray( Hex.fromString( t_toEnc ) );
var t_key:ByteArray = Hex.toArray( Hex.fromString( 'Thisisthekey' ) );
var t_cbc:CBCMode = new CBCMode( new BlowFishKey( t_key ), new NullPad );
var t_enc:String;
t_cbc.IV = Hex.toArray( '30313233' );
t_cbc.encrypt( t_byAry );
t_enc = Base64.encodeByteArray( t_byAry );
dbg( 'b64 encrypted string ' + t_enc ); //this is just a debugging function we use in our code.
}
这是上述函数的 base64 编码输出。
xvVqLzV5TU4=
现在,使用 pycrypto 库中的相同密钥、初始化向量和算法会给我不同的输出。
Python:
from Crypto.Cipher import Blowfish
B = Blowfish.new( 'Thisisthekey', Blowfish.MODE_CBC, '30313233' )
S = 'testtest'
X = B.encrypt( S )
import base64
Y = base64.b64encode( X )
print Y
I82NQEkSHhE=
我很确定我在加密过程中做错了,因为我可以在两个库上对“testtest”进行base64编码并接收相同的输出。
动作脚本 3:
var b:ByteArray = new ByteArray();
b.writeUTFBytes( 'testtest' );
dbg( Base64.encodeByteArray( b ) );
产量...
dGVzdHRlc3Q=
Python:
>>> T = 'testtest'
>>> print base64.b64encode( T )
产量
dGVzdHRlc3Q=
有人可以在python或actionscript中使用相同的IV加密和base64encode相同的字符串,所以我知道哪个库实际上产生了正确的输出?