Crate cipher[][src]

Expand description

This crate defines a set of traits which describe the functionality of block ciphers and stream ciphers.

Re-exports

pub use crate::block::BlockCipher;
pub use crate::block::BlockCipherMut;
pub use crate::block::NewBlockCipher;
pub use crate::stream::NewStreamCipher;
pub use crate::stream::StreamCipher;
pub use crate::stream::SyncStreamCipher;
pub use crate::stream::SyncStreamCipherSeek;
pub use generic_array;

Modules

Traits used to define functionality of block ciphers.

Type aliases for many constants.

Traits which define functionality of stream ciphers.