ige 0.2.0

Infinite Garble Extension (IGE) 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 ige::{Decryptor, Encryptor};

iv_state_test!(aes128_ige_enc_iv_state, Encryptor<Aes128>, encrypt);
iv_state_test!(aes128_ige_dec_iv_state, Decryptor<Aes128>, decrypt);