pub trait SynchronousStreamCipher {
    fn process(&mut self, input: &[u8], output: &mut [u8]);
}

Required methods

Implementations on Foreign Types

Implementors