Crate stream_cipher

source ·
Expand description

This crate defines a set of traits which define functionality of stream ciphers.

See RustCrypto/stream-ciphers for ciphers implementation.

Re-exports

pub extern crate generic_array;

Structs

Error which notifies that key or/and nonce used in stream cipher initialization had an invalid length.
Error which notifies that stream cipher has reached the end of a keystream.

Traits

Stream cipher creation trait.
Stream cipher core trait which covers both synchronous and asynchronous ciphers.
Synchronous stream cipher core trait.
Synchronous stream cipher seeking trait.