Trait cipher::StreamCipherSeekCore
source · [−]pub trait StreamCipherSeekCore: StreamCipherCore {
type Counter: Counter;
fn get_block_pos(&self) -> Self::Counter;
fn set_block_pos(&mut self, pos: Self::Counter);
}
Expand description
Block-level seeking trait for stream ciphers.
Required Associated Types
Required Methods
fn get_block_pos(&self) -> Self::Counter
fn get_block_pos(&self) -> Self::Counter
Get current block position.
fn set_block_pos(&mut self, pos: Self::Counter)
fn set_block_pos(&mut self, pos: Self::Counter)
Set block position.