pcbc 0.2.0

Propagating Cipher Block Chaining (PCBC) block cipher mode of operation
Documentation
1
2
3
4
5
6
7
8
//! IV state tests.

use aes::Aes128;
use cipher::iv_state_test;
use pcbc::{Decryptor, Encryptor};

iv_state_test!(aes128_pcbc_enc_iv_state, Encryptor<Aes128>, encrypt);
iv_state_test!(aes128_pcbc_dec_iv_state, Decryptor<Aes128>, decrypt);