pub fn cbc_decrypt<C: BlockCipher>(cipher: &C, iv: &[u8], data: &mut [u8])
Decrypt data in CBC mode.
Panics if data.len() is not a multiple of the block size, or if iv.len() does not match the block size.
data.len()
iv.len()