use crate::blockcipher::{
Rc2FixedSize, Sm4,
Aes128, Aes192, Aes256,
Camellia128, Camellia192, Camellia256,
Aria128, Aria192, Aria256,
};
macro_rules! impl_block_cipher_with_cbc_mode {
($name:tt, $cipher:tt) => {
#[derive(Clone)]
pub struct $name {
cipher: $cipher,
}
impl $name {
pub const KEY_LEN: usize = $cipher::KEY_LEN;
pub const BLOCK_LEN: usize = $cipher::BLOCK_LEN;
pub const IV_LEN: usize = $cipher::BLOCK_LEN;
pub fn new(key: &[u8]) -> Self {
assert_eq!(key.len(), Self::KEY_LEN);
let cipher = $cipher::new(key);
Self { cipher }
}
pub fn encrypt(&mut self, iv: &[u8; Self::IV_LEN], blocks: &mut [u8]) {
debug_assert_eq!(iv.len(), Self::IV_LEN);
assert_eq!(blocks.len() % Self::BLOCK_LEN, 0);
let mut last_block = iv.clone();
for plaintext in blocks.chunks_mut(Self::BLOCK_LEN) {
debug_assert_eq!(plaintext.len(), Self::BLOCK_LEN);
for i in 0..Self::BLOCK_LEN {
plaintext[i] ^= last_block[i];
}
self.cipher.encrypt(plaintext);
for i in 0..Self::BLOCK_LEN {
last_block[i] = plaintext[i];
}
}
}
pub fn decrypt(&mut self, iv: &[u8; Self::IV_LEN], blocks: &mut [u8]) {
debug_assert_eq!(iv.len(), Self::IV_LEN);
assert_eq!(blocks.len() % Self::BLOCK_LEN, 0);
let mut last_block = iv.clone();
for ciphertext in blocks.chunks_mut(Self::BLOCK_LEN) {
debug_assert_eq!(ciphertext.len(), Self::BLOCK_LEN);
let mut output_block = [0u8; Self::BLOCK_LEN];
for i in 0..Self::BLOCK_LEN {
output_block[i] = ciphertext[i];
}
self.cipher.decrypt(&mut output_block);
for i in 0..Self::BLOCK_LEN {
output_block[i] ^= last_block[i];
last_block[i] = ciphertext[i];
ciphertext[i] = output_block[i];
}
}
}
}
}
}
impl_block_cipher_with_cbc_mode!(Rc2FixedSizeCbc, Rc2FixedSize);
impl_block_cipher_with_cbc_mode!(Sm4Cbc, Sm4);
impl_block_cipher_with_cbc_mode!(Aria128Cbc, Aria128);
impl_block_cipher_with_cbc_mode!(Aria192Cbc, Aria192);
impl_block_cipher_with_cbc_mode!(Aria256Cbc, Aria256);
impl_block_cipher_with_cbc_mode!(Aes128Cbc, Aes128);
impl_block_cipher_with_cbc_mode!(Aes192Cbc, Aes192);
impl_block_cipher_with_cbc_mode!(Aes256Cbc, Aes256);
impl_block_cipher_with_cbc_mode!(Camellia128Cbc, Camellia128);
impl_block_cipher_with_cbc_mode!(Camellia192Cbc, Camellia192);
impl_block_cipher_with_cbc_mode!(Camellia256Cbc, Camellia256);
#[cfg(test)]
#[bench]
fn bench_aes128_cbc_enc(b: &mut test::Bencher) {
let key = hex::decode("00000000000000000000000000000000").unwrap();
let ivec = hex::decode("000102030405060708090a0b0c0d0e0f").unwrap();
let mut iv = [0u8; Aes128Cbc::IV_LEN];
iv.copy_from_slice(&ivec);
let mut cipher = Aes128Cbc::new(&key);
b.bytes = Aes128Cbc::BLOCK_LEN as u64;
b.iter(|| {
let mut ciphertext = test::black_box([1u8; Aes128Cbc::BLOCK_LEN]);
cipher.encrypt(&iv, &mut ciphertext);
ciphertext
})
}
#[test]
fn test_aes128_cbc_enc() {
let key = hex::decode("2b7e151628aed2a6abf7158809cf4f3c").unwrap();
let ivec = hex::decode("000102030405060708090a0b0c0d0e0f").unwrap();
let mut iv = [0u8; Aes128Cbc::IV_LEN];
iv.copy_from_slice(&ivec);
let mut cipher = Aes128Cbc::new(&key);
let plaintext = hex::decode("\
6bc1bee22e409f96e93d7e117393172a\
ae2d8a571e03ac9c9eb76fac45af8e51\
30c81c46a35ce411e5fbc1191a0a52ef\
f69f2445df4f9b17ad2b417be66c3710").unwrap();
let mut ciphertext = plaintext.clone();
cipher.encrypt(&iv, &mut ciphertext);
assert_eq!(&ciphertext[..], &hex::decode("\
7649abac8119b246cee98e9b12e9197d\
5086cb9b507219ee95db113a917678b2\
73bed6b8e3c1743b7116e69e22229516\
3ff1caa1681fac09120eca307586e1a7").unwrap()[..]);
}
#[test]
fn test_aes128_cbc_dec() {
let key = hex::decode("2b7e151628aed2a6abf7158809cf4f3c").unwrap();
let ivec = hex::decode("000102030405060708090a0b0c0d0e0f").unwrap();
let mut iv = [0u8; Aes128Cbc::IV_LEN];
iv.copy_from_slice(&ivec);
let mut cipher = Aes128Cbc::new(&key);
let ciphertext = hex::decode("\
7649abac8119b246cee98e9b12e9197d\
5086cb9b507219ee95db113a917678b2\
73bed6b8e3c1743b7116e69e22229516\
3ff1caa1681fac09120eca307586e1a7").unwrap();
let mut plaintext = ciphertext.clone();
cipher.decrypt(&iv, &mut plaintext);
assert_eq!(&plaintext[..], &hex::decode("\
6bc1bee22e409f96e93d7e117393172a\
ae2d8a571e03ac9c9eb76fac45af8e51\
30c81c46a35ce411e5fbc1191a0a52ef\
f69f2445df4f9b17ad2b417be66c3710").unwrap()[..]);
}