I try to do crypto on node.js but badly I fail to have the same result than online sites.
I want to encrypt some binary data with a binary key. I use the tuto on nodejs site api/crypto.html#crypto_class_cipher but i have a different result that my reference data set. My reference data set is validated with java code, with C code and with two online site : http://aes.online-domain-tools.com/ and https://www.hanewin.net/encrypt/aes/aes-test.htm
Have you an idea how to encrypt the same way that those sites? I guess it can be the padding?
Thanks in advance. François
My reference data set :
key=8CBDEC62EB4DCA778F842B02503011B2
src=0002123401010100000000000000c631
encrypted=3edde3f1368328a1a37cf596bc8d4a7c
My code :
var key = new Buffer('8CBDEC62EB4DCA778F842B02503011B2', 'hex')
var src = new Buffer('0002123401010100000000000000c631', 'hex')
cipher = crypto.createCipher("aes-128-ecb", key)
result = cipher.update(src).toString('hex');
result += cipher.final().toString('hex');
"result : " + result
Output :
result : 4da42b57b99320067979086700651050e972f1febd1d506e5c90d3b5d3bc9424
via Fanch
No comments:
Post a Comment