react-native-crypto-js icon indicating copy to clipboard operation
react-native-crypto-js copied to clipboard

Unable to change padding block size

Open filmverse opened this issue 2 years ago • 1 comments

const cipherText = CryptoJS.AES.encrypt(uri, keyStringSelect, { iv: ivStringSelect, mode: CryptoJS.mode.CBC, padding: CryptoJS.pad.Pkcs7, });

I want to change the blockSize of padding to 16, How can I do that ?

please help

filmverse avatar Oct 10 '23 19:10 filmverse

I tried this: const cipherText = CryptoJS.AES.encrypt(uri, keyStringSelect, { iv: ivStringSelect, mode: CryptoJS.mode.CBC, padding: CryptoJS.pad.Pkcs7, blockSize: 256 / 16, }); but it didn't work.

filmverse avatar Oct 10 '23 19:10 filmverse