Struct StreamCipherCoreWrapper

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

Buffering wrapper around a StreamCipherCore implementation.

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: StreamCipherCore + Clone> Clone for StreamCipherCoreWrapper<T>

Source§

fn clone(&self) -> Self

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: StreamCipherCore + Debug> Debug for StreamCipherCoreWrapper<T>

Source§

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

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

impl<T: StreamCipherCore + Default> Default for StreamCipherCoreWrapper<T>

Source§

fn default() -> Self

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

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

Available on crate feature zeroize only.
Source§

fn drop(&mut self)

Executes the destructor for this type. Read more
Source§

impl<T: IvSizeUser + StreamCipherCore> 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 + StreamCipherCore> KeyInit for StreamCipherCoreWrapper<T>

Source§

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

Create new value from fixed size key.
Source§

fn weak_key_test(_key: &Array<u8, Self::KeySize>) -> Result<(), WeakKeyError>

Check if the key might be considered weak.
Source§

fn new_checked(key: &Array<u8, Self::KeySize>) -> Result<Self, WeakKeyError>

Create new value from fixed size key after checking it for weakness.
Source§

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

Create new value from variable size key.
Source§

fn generate_key() -> Result<Array<u8, Self::KeySize>, OsError>

Generate random key using the operating system’s secure RNG.
Source§

fn generate_key_with_rng<R>(rng: &mut R) -> Array<u8, Self::KeySize>
where R: CryptoRng + ?Sized,

Generate random key using the provided CryptoRng.
Source§

fn try_generate_key_with_rng<R>( rng: &mut R, ) -> Result<Array<u8, Self::KeySize>, <R as TryRngCore>::Error>
where R: TryCryptoRng + ?Sized,

Generate random key using the provided TryCryptoRng.
Source§

impl<T: KeyIvInit + StreamCipherCore> 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 weak_key_test(_key: &Array<u8, Self::KeySize>) -> Result<(), WeakKeyError>

Check if the key might be considered weak.
Source§

fn new_checked( key: &Array<u8, Self::KeySize>, iv: &Array<u8, Self::IvSize>, ) -> Result<Self, WeakKeyError>

Create new value from fixed length key and nonce after checking the key for weakness.
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() -> Result<Array<u8, Self::KeySize>, OsError>

Generate random key using the operating system’s secure RNG.
Source§

fn generate_key_with_rng<R>(rng: &mut R) -> Array<u8, Self::KeySize>
where R: CryptoRng + ?Sized,

Generate random key using the provided CryptoRng.
Source§

fn try_generate_key_with_rng<R>( rng: &mut R, ) -> Result<Array<u8, Self::KeySize>, <R as TryRngCore>::Error>
where R: TryCryptoRng + ?Sized,

Generate random key using the provided TryCryptoRng.
Source§

fn generate_iv() -> Result<Array<u8, Self::IvSize>, OsError>

Generate random IV using the operating system’s secure RNG.
Source§

fn generate_iv_with_rng<R>(rng: &mut R) -> Array<u8, Self::IvSize>
where R: CryptoRng + ?Sized,

Generate random IV using the provided CryptoRng.
Source§

fn try_generate_iv_with_rng<R>( rng: &mut R, ) -> Result<Array<u8, Self::IvSize>, <R as TryRngCore>::Error>
where R: TryCryptoRng + ?Sized,

Generate random IV using the provided TryCryptoRng.
Source§

fn generate_key_iv() -> Result<(Array<u8, Self::KeySize>, Array<u8, Self::IvSize>), OsError>

Generate random key and IV using the operating system’s secure RNG.
Source§

fn generate_key_iv_with_rng<R>( rng: &mut R, ) -> (Array<u8, Self::KeySize>, Array<u8, Self::IvSize>)
where R: CryptoRng + ?Sized,

Generate random key and IV using the provided CryptoRng.
Source§

fn try_generate_key_iv_with_rng<R>( rng: &mut R, ) -> Result<(Array<u8, Self::KeySize>, Array<u8, Self::IvSize>), <R as TryRngCore>::Error>
where R: TryCryptoRng + ?Sized,

Generate random key and IV using the provided TryCryptoRng.
Source§

impl<T: KeySizeUser + StreamCipherCore> 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: 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
Source§

impl<T: StreamCipherCore + ZeroizeOnDrop> ZeroizeOnDrop for StreamCipherCoreWrapper<T>

Available on crate feature zeroize only.

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> ToOwned for T
where T: Clone,

Source§

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

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.