Crate tail_cbc

Crate tail_cbc 

Source

Re-exports§

pub use cipher;

Structs§

Decryptor
CBC mode decryptor.
Encryptor
CBC mode encryptor.
TailError
If unaligned tail procesing failed, this struct should be returned.

Traits§

UnalignedBytesDecryptMut
In many cases, plaintext and ciphertext input is not divisible by the block size, and padding is often used. In practical use, however, this is not always done, and user-specified processing to an unaligned part like, for example, XOR, is often applied. This trait enables to apply additional processing to an unaligned [tail].
UnalignedBytesEncryptMut
In many cases, plaintext and ciphertext input is not divisible by the block size, and padding is often used. In practical use, however, this is not always done, and user-specified processing to an unaligned part like, for example, XOR, is often applied. This trait enables to apply additional processing to an unaligned [tail].