pub struct StreamCipherCoreWrapper<T: BlockSizeUser>{ /* 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>

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>

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>

source§

fn default() -> StreamCipherCoreWrapper<T>

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

impl<T: IvSizeUser + BlockSizeUser> IvSizeUser for StreamCipherCoreWrapper<T>

§

type IvSize = <T as IvSizeUser>::IvSize

Initialization vector size in bytes.
§

fn iv_size() -> usize

Return IV size in bytes.
source§

impl<T: KeyInit + BlockSizeUser> KeyInit for StreamCipherCoreWrapper<T>

source§

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

Create new value from fixed size key.
§

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

Create new value from variable size key.
§

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>

source§

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

Create new value from fixed length key and nonce.
§

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

Create new value from variable length key and nonce.
§

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

Generate random key using the provided CryptoRng.
§

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

Generate random IV using the provided CryptoRng.
§

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>

§

type KeySize = <T as KeySizeUser>::KeySize

Key size in bytes.
§

fn key_size() -> usize

Return key size in bytes.
source§

impl<T: StreamCipherCore> StreamCipher for StreamCipherCoreWrapper<T>

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>

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

Auto Trait Implementations§

§

impl<T> Freeze for StreamCipherCoreWrapper<T>

§

impl<T> RefUnwindSafe for StreamCipherCoreWrapper<T>

§

impl<T> Send for StreamCipherCoreWrapper<T>
where <<T as BlockSizeUser>::BlockSize as IsLess<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>>::Output: Sealed, T: Send,

§

impl<T> Sync for StreamCipherCoreWrapper<T>
where <<T as BlockSizeUser>::BlockSize as IsLess<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>>::Output: Sealed, T: Sync,

§

impl<T> Unpin for StreamCipherCoreWrapper<T>
where <<T as BlockSizeUser>::BlockSize as IsLess<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>>::Output: Sealed, T: Unpin, <<T as BlockSizeUser>::BlockSize as ArrayLength<u8>>::ArrayType: Unpin,

§

impl<T> UnwindSafe for StreamCipherCoreWrapper<T>

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> 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

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where 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 T
where U: Into<T>,

§

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>,

§

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.