Is AES the same in libraries PyCrypto & Node.JS Crypto
问题 I am beginnging to wonder if the implementation of AES is different across libraries.. Currently i have a plaintext encrypted with PyCrypto. Im trying to decrypt the ciphertext with Node.js's Crypto Library.. Basically with PyCrypto.. im using AES-128-CBC with a random generated IV. (which decrypts perfectly in PyCrypto) However.. On Node.js im doing this var buf = new Buffer(ciphertext) var decipher = crypto.createDecipher('aes-128-cbc',aeskey) buf = decipher.update(buf,'binary', 'binary')