javascript - Using CryptoJS for decryption after OpenSSL encryption -
i using openssl encrypt txt file, "hello world" inside, using following command @ terminal:
openssl enc -aes-128-ctr -in file.txt -out file-out-64.txt -base64 -a -k 0123456789abcdef0123456789abcdef -iv 00000000000000000000000000000000`
so, using aes-128 (ctr mode) dummy key , iv , generating base64 @ end, producing following output: mc6prldi+uuh5ko=
i want decrypt cryptojs , using following code:
cryptojs.aes.decrypt( "mc6prldi+uuh5ko=", cryptojs.enc.hex.parse("0123456789abcdef0123456789abcdef"), { iv : cryptojs.enc.hex.parse("00000000000000000000000000000000"), mode : cryptojs.mode.ctr } );
i expecting "hello world" output it's producing empty string result. can help?
i found solution. in options parameter had add padding nopadding
var decoded = cryptojs.aes.decrypt("mc6prldi+uuh5ko=", cryptojs.enc.hex.parse("0123456789abcdef0123456789abcdef"), { iv: cryptojs.enc.hex.parse("00000000000000000000000000000000"), padding: cryptojs.pad.nopadding, mode: cryptojs.mode.ctr });
Comments
Post a Comment