Trait sha2::symmetriccipher::SynchronousStreamCipher
[−]
[src]
pub trait SynchronousStreamCipher {
fn process(&mut self, input: &[u8], output: &mut [u8]);
}
Required Methods
Implementors
impl SynchronousStreamCipher for Box<SynchronousStreamCipher + 'static>