Encrypts data using AES-128-CBC mode without PKCS#7 padding.
The 16-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 aes128CbcNoPaddingEncrypt(key, data, iv) Copy
const encrypted = await aes128CbcNoPaddingEncrypt(key, data, iv)
Encrypts data using AES-128-CBC mode without PKCS#7 padding.