Encrypts data using AES-256-CBC mode without PKCS#7 padding.
The 32-byte encryption key.
The data to encrypt. Must be a multiple of 16 bytes.
The 16-byte initialization vector.
A promise that resolves to the encrypted data.
const encrypted = await aes256CbcNoPaddingEncrypt(key, data, iv) Copy
const encrypted = await aes256CbcNoPaddingEncrypt(key, data, iv)
Encrypts data using AES-256-CBC mode without PKCS#7 padding.