pub struct StreamCipherCoreWrapper<T: BlockSizeUser>where
    T::BlockSize: IsLess<U256>,
    Le<T::BlockSize, U256>: NonZero,{ /* private fields */ }
Expand description

Wrapper around StreamCipherCore implementations.

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

Implementations§

source§

impl<T: StreamCipherCore> StreamCipherCoreWrapper<T>where T::BlockSize: IsLess<U256>, Le<T::BlockSize, U256>: NonZero,

source

pub fn get_core(&self) -> &T

Return reference to the core type.

source

pub fn from_core(core: T) -> Self

Return reference to the core type.

Trait Implementations§

source§

impl<T: Clone + BlockSizeUser> Clone for StreamCipherCoreWrapper<T>where T::BlockSize: IsLess<U256>, Le<T::BlockSize, U256>: NonZero,

source§

fn clone(&self) -> StreamCipherCoreWrapper<T>

Returns a copy 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: Default + BlockSizeUser> Default for StreamCipherCoreWrapper<T>where T::BlockSize: IsLess<U256>, Le<T::BlockSize, U256>: NonZero,

source§

fn default() -> StreamCipherCoreWrapper<T>

Returns the “default value” for a type. Read more
source§

impl<T> Drop for StreamCipherCoreWrapper<T>where T: BlockSizeUser, T::BlockSize: IsLess<U256>, Le<T::BlockSize, U256>: NonZero,

source§

fn drop(&mut self)

Executes the destructor for this type. Read more
source§

impl<T: IvSizeUser + BlockSizeUser> IvSizeUser for StreamCipherCoreWrapper<T>where T::BlockSize: IsLess<U256>, Le<T::BlockSize, U256>: NonZero,

§

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 + BlockSizeUser> KeyInit for StreamCipherCoreWrapper<T>where T::BlockSize: IsLess<U256>, Le<T::BlockSize, U256>: NonZero,

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.
source§

fn generate_key( rng: impl CryptoRng + RngCore ) -> GenericArray<u8, Self::KeySize>

Generate random key using the provided CryptoRng.
source§

impl<T: KeyIvInit + BlockSizeUser> KeyIvInit for StreamCipherCoreWrapper<T>where T::BlockSize: IsLess<U256>, Le<T::BlockSize, U256>: NonZero,

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.
source§

fn generate_key( rng: impl CryptoRng + RngCore ) -> GenericArray<u8, Self::KeySize>

Generate random key using the provided CryptoRng.
source§

fn generate_iv(rng: impl CryptoRng + RngCore) -> GenericArray<u8, Self::IvSize>

Generate random IV using the provided CryptoRng.
source§

fn generate_key_iv( rng: impl CryptoRng + RngCore ) -> (GenericArray<u8, Self::KeySize>, GenericArray<u8, Self::IvSize>)

Generate random key and nonce using the provided CryptoRng.
source§

impl<T: KeySizeUser + BlockSizeUser> KeySizeUser for StreamCipherCoreWrapper<T>where T::BlockSize: IsLess<U256>, Le<T::BlockSize, U256>: NonZero,

§

type KeySize = <T as KeySizeUser>::KeySize

Key size in bytes.
source§

fn key_size() -> usize

Return key size in bytes.
source§

impl<T: StreamCipherCore> StreamCipher for StreamCipherCoreWrapper<T>where T::BlockSize: IsLess<U256>, Le<T::BlockSize, U256>: NonZero,

source§

fn try_apply_keystream_inout( &mut self, data: 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 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] ) -> Result<(), StreamCipherError>

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

impl<T: StreamCipherSeekCore> StreamCipherSeek for StreamCipherCoreWrapper<T>where T::BlockSize: IsLess<U256>, Le<T::BlockSize, U256>: NonZero,

source§

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

Try to get current keystream position Read more
source§

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

Try to seek to the given position Read more
source§

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

Get current keystream position Read more
source§

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

Seek to the given position Read more
source§

impl<T> ZeroizeOnDrop for StreamCipherCoreWrapper<T>where T: BlockSizeUser + ZeroizeOnDrop, T::BlockSize: IsLess<U256>, Le<T::BlockSize, U256>: NonZero,

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

const: unstable · source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

const: unstable · 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<T> for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

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

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.
source§

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

§

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

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.