tc_block_cipher 0.1.0

Shared initialization and single-block processing traits, errors and wiping key containers for block ciphers.
Documentation
1
2
3
4
5
6
7
8
9
mod key_fixed;
#[cfg(feature = "alloc")]
mod key_owned;
mod key_ref;

pub use key_fixed::KeyFixed;
#[cfg(feature = "alloc")]
pub use key_owned::KeyOwned;
pub use key_ref::KeyRef;