Trait crypto::symmetriccipher::SynchronousStreamCipher
[-] [+]
[src]
pub trait SynchronousStreamCipher { fn process(&mut self, input: &[u8], output: &mut [u8]); }
Required Methods
Implementors
impl<A: BlockEncryptor> SynchronousStreamCipher for CtrMode<A>
impl<A: BlockEncryptorX8> SynchronousStreamCipher for CtrModeX8<A>
impl SynchronousStreamCipher for ChaCha20
impl SynchronousStreamCipher for Rc4
impl SynchronousStreamCipher for Salsa20
impl SynchronousStreamCipher for Box<SynchronousStreamCipher + 'static>