Expand description
This crate defines a set of traits which describe the functionality of block ciphers, block modes, and stream ciphers.
Re-exports§
pub use crypto_common;
pub use inout;
pub use crypto_common::rand_core;
rand_core
pub use inout::block_padding;
block-padding
pub use zeroize;
zeroize
pub use blobby;
pub use crypto_common::generic_array;
pub use crypto_common::typenum;
Modules§
Macros§
- block_
cipher_ test dev
- Define block cipher test
- block_
decryptor_ bench dev
- Define block decryptor benchmark
- block_
encryptor_ bench dev
- Define block encryptor benchmark
- block_
mode_ dec_ test dev
- Define block mode decryption test
- block_
mode_ enc_ test dev
- Define block mode encryption test
- impl_
simple_ block_ encdec - Implement simple block backend
- iv_
state_ test dev
- Define
IvState
test - stream_
cipher_ bench dev
- Create stream cipher benchmarks
- stream_
cipher_ seek_ test dev
- Test stream synchronous stream cipher seeking capabilities
- stream_
cipher_ test dev
- Test core functionality of synchronous stream cipher
Structs§
- Invalid
Length - The error type returned when key and/or IV used in the
KeyInit
,KeyIvInit
, andInnerIvInit
slice-based methods had an invalid length. - Overflow
Error - The error type returned when a cipher position can not be represented by the requested type.
- Stream
Cipher Core Wrapper - Wrapper around
StreamCipherCore
implementations. - Stream
Cipher Error - This error is returned by the
StreamCipher
trait methods.
Traits§
- Algorithm
Name - Trait which stores algorithm name constant, used in
Debug
implementations. - Array
Length - Trait making
GenericArray
work, marking types to be used as length of an array - Async
Stream Cipher - Marker trait for block-level asynchronous stream ciphers
- Block
Backend - Trait implemented by block cipher encryption and decryption backends.
- Block
Cipher - Marker trait for block ciphers.
- Block
Closure - Trait for
BlockBackend
users. - Block
Decrypt - Decrypt-only functionality for block ciphers.
- Block
Decrypt Mut - Decrypt-only functionality for block ciphers and modes with mutable access to
self
. - Block
Encrypt - Encrypt-only functionality for block ciphers.
- Block
Encrypt Mut - Encrypt-only functionality for block ciphers and modes with mutable access to
self
. - Block
Size User - Types which process data in blocks.
- Counter
- Counter type usable with
StreamCipherCore
. - Inner
IvInit - Types which can be initialized from another type and additional initialization vector/nonce.
- IvSize
User - Types which use initialization vector (nonce) for initialization.
- IvState
- Trait for loading current IV state.
- KeyInit
- Types which can be initialized from key.
- KeyIv
Init - Types which can be initialized from key and initialization vector (nonce).
- KeySize
User - Types which use key for initialization.
- ParBlocks
Size User - Types which can process blocks in parallel.
- SeekNum
- Trait implemented for numeric types which can be used with the
StreamCipherSeek
trait. - Stream
Backend - Trait implemented by stream cipher backends.
- Stream
Cipher - Synchronous stream cipher core trait.
- Stream
Cipher Core - Block-level synchronous stream ciphers.
- Stream
Cipher Seek - Trait for seekable stream ciphers.
- Stream
Cipher Seek Core - Block-level seeking trait for stream ciphers.
- Stream
Closure - Trait for
StreamBackend
users. - Unsigned
- The marker trait for compile time unsigned integers.
Type Aliases§
- Block
- Block on which
BlockSizeUser
implementors operate. - Iv
- Initialization vector (nonce) used by
IvSizeUser
implementors. - Key
- Key used by
KeySizeUser
implementors. - ParBlocks
- Parallel blocks on which
ParBlocksSizeUser
implementors operate.