StreamCipherCoreWrapper

Struct StreamCipherCoreWrapper 

Source
pub struct StreamCipherCoreWrapper<T>{ /* private fields */ }
Expand description

Buffering wrapper around a StreamCipherCore implementation.

It handles data buffering and implements the slice-based traits.

Implementations§

Source§

impl<T> StreamCipherCoreWrapper<T>

Source

pub fn from_core(core: T) -> Self

Initialize from a StreamCipherCore instance.

Source

pub fn get_core(&self) -> &T

Get reference to the wrapped StreamCipherCore instance.

Trait Implementations§

Source§

impl<T> Clone for StreamCipherCoreWrapper<T>

Source§

fn clone(&self) -> Self

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<T> Debug for StreamCipherCoreWrapper<T>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<T> IvSizeUser for StreamCipherCoreWrapper<T>

Source§

type IvSize = <T as IvSizeUser>::IvSize

Initialization vector size in bytes.
Source§

fn iv_size() -> usize

Return IV size in bytes.
Source§

impl<T> KeyInit for StreamCipherCoreWrapper<T>

Source§

fn new(key: &Key<Self>) -> Self

Create new value from fixed size key.
Source§

fn new_from_slice(key: &[u8]) -> Result<Self, InvalidLength>

Create new value from variable size key. Read more
Source§

impl<T> KeyIvInit for StreamCipherCoreWrapper<T>

Source§

fn new(key: &Key<Self>, iv: &Iv<Self>) -> Self

Create new value from fixed length key and nonce.
Source§

fn new_from_slices(key: &[u8], iv: &[u8]) -> Result<Self, InvalidLength>

Create new value from variable length key and nonce. Read more
Source§

impl<T> KeySizeUser for StreamCipherCoreWrapper<T>

Source§

type KeySize = <T as KeySizeUser>::KeySize

Key size in bytes.
Source§

fn key_size() -> usize

Return key size in bytes.
Source§

impl<T> StreamCipher for StreamCipherCoreWrapper<T>

Source§

fn check_remaining(&self, data_len: usize) -> Result<(), StreamCipherError>

Check that the cipher can generate a keystream with a length of data_len bytes. Read more
Source§

fn unchecked_apply_keystream_inout(&mut self, data: InOutBuf<'_, '_, u8>)

Apply keystream to inout without checking for keystream repetition. Read more
Source§

fn unchecked_write_keystream(&mut self, data: &mut [u8])

Apply keystream to buf without checking for keystream repetition. Read more
Source§

fn unchecked_apply_keystream(&mut self, buf: &mut [u8])

Apply keystream to data behind buf without checking for keystream repetition. Read more
Source§

fn unchecked_apply_keystream_b2b( &mut self, input: &[u8], output: &mut [u8], ) -> Result<(), NotEqualError>

Apply keystream to data buffer-to-buffer without checking for keystream repetition. Read more
Source§

fn try_apply_keystream_inout( &mut self, buf: InOutBuf<'_, '_, u8>, ) -> Result<(), StreamCipherError>

Apply keystream to inout data. Read more
Source§

fn try_apply_keystream( &mut self, buf: &mut [u8], ) -> Result<(), StreamCipherError>

Apply keystream to data behind buf. Read more
Source§

fn try_apply_keystream_b2b( &mut self, input: &[u8], output: &mut [u8], ) -> Result<(), StreamCipherError>

Apply keystream to data buffer-to-buffer. Read more
Source§

fn try_write_keystream( &mut self, buf: &mut [u8], ) -> Result<(), StreamCipherError>

Write keystream to buf. Read more
Source§

fn apply_keystream_inout(&mut self, buf: InOutBuf<'_, '_, u8>)

Apply keystream to inout data. Read more
Source§

fn apply_keystream(&mut self, buf: &mut [u8])

Apply keystream to data in-place. Read more
Source§

fn apply_keystream_b2b(&mut self, input: &[u8], output: &mut [u8])

Apply keystream to data buffer-to-buffer. Read more
Source§

fn write_keystream(&mut self, buf: &mut [u8])

Write keystream to buf. Read more
Source§

impl<T> StreamCipherSeek for StreamCipherCoreWrapper<T>

Source§

fn try_current_pos<SN: SeekNum>(&self) -> Result<SN, OverflowError>

Try to get current keystream position in bytes. Read more
Source§

fn try_seek<SN: SeekNum>( &mut self, new_pos: SN, ) -> Result<(), StreamCipherError>

Try to seek to the provided position in bytes. Read more
Source§

fn current_pos<T: SeekNum>(&self) -> T

Get current keystream position in bytes. Read more
Source§

fn seek<T: SeekNum>(&mut self, pos: T)

Seek to the provided keystream position in bytes. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.