Struct ctr::CtrCore

source ·
pub struct CtrCore<C, F>{ /* private fields */ }
Expand description

Generic CTR block mode instance.

Trait Implementations§

source§

impl<C, F> AlgorithmName for CtrCore<C, F>

source§

fn write_alg_name(f: &mut Formatter<'_>) -> Result

Write algorithm name into f.
source§

impl<C, F> BlockSizeUser for CtrCore<C, F>

§

type BlockSize = <C as BlockSizeUser>::BlockSize

Size of the block in bytes.
source§

fn block_size() -> usize

Return block size in bytes.
source§

impl<C, F> Clone for CtrCore<C, F>

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<C, F> Debug for CtrCore<C, F>

source§

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

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

impl<C, F> InnerIvInit for CtrCore<C, F>

source§

fn inner_iv_init(cipher: C, iv: &Iv<Self>) -> Self

Initialize value using inner and iv array.
source§

fn inner_iv_slice_init( inner: Self::Inner, iv: &[u8], ) -> Result<Self, InvalidLength>

Initialize value using inner and iv slice.
source§

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

Generate random IV using the provided CryptoRng.
source§

impl<C, F> InnerUser for CtrCore<C, F>

§

type Inner = C

Inner type.
source§

impl<C, F> IvSizeUser for CtrCore<C, F>

§

type IvSize = <C as BlockSizeUser>::BlockSize

Initialization vector size in bytes.
source§

fn iv_size() -> usize

Return IV size in bytes.
source§

impl<C, F> IvState for CtrCore<C, F>

source§

fn iv_state(&self) -> Iv<Self>

Returns current IV state.
source§

impl<C, F> StreamCipherCore for CtrCore<C, F>

source§

fn remaining_blocks(&self) -> Option<usize>

Return number of remaining blocks before cipher wraps around. Read more
source§

fn process_with_backend( &mut self, f: impl StreamClosure<BlockSize = Self::BlockSize>, )

Process data using backend provided to the rank-2 closure.
source§

fn write_keystream_block( &mut self, block: &mut GenericArray<u8, Self::BlockSize>, )

Write keystream block. Read more
source§

fn write_keystream_blocks( &mut self, blocks: &mut [GenericArray<u8, Self::BlockSize>], )

Write keystream blocks. Read more
source§

fn apply_keystream_block_inout( &mut self, block: InOut<'_, '_, GenericArray<u8, Self::BlockSize>>, )

Apply keystream block. Read more
source§

fn apply_keystream_blocks( &mut self, blocks: &mut [GenericArray<u8, Self::BlockSize>], )

Apply keystream blocks. Read more
source§

fn apply_keystream_blocks_inout( &mut self, blocks: InOutBuf<'_, '_, GenericArray<u8, Self::BlockSize>>, )

Apply keystream blocks. Read more
source§

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

Try to apply keystream to data not divided into blocks. Read more
source§

fn apply_keystream_partial(self, buf: InOutBuf<'_, '_, u8>)

Try to apply keystream to data not divided into blocks. Read more
source§

impl<C, F> StreamCipherSeekCore for CtrCore<C, F>

§

type Counter = <F as CtrFlavor<<C as BlockSizeUser>::BlockSize>>::Backend

Counter type used inside stream cipher.
source§

fn get_block_pos(&self) -> Self::Counter

Get current block position.
source§

fn set_block_pos(&mut self, pos: Self::Counter)

Set block position.

Auto Trait Implementations§

§

impl<C, F> Freeze for CtrCore<C, F>
where C: Freeze, <F as CtrFlavor<<C as BlockSizeUser>::BlockSize>>::CtrNonce: Freeze,

§

impl<C, F> RefUnwindSafe for CtrCore<C, F>

§

impl<C, F> Send for CtrCore<C, F>
where C: Send, <F as CtrFlavor<<C as BlockSizeUser>::BlockSize>>::CtrNonce: Send,

§

impl<C, F> Sync for CtrCore<C, F>
where C: Sync, <F as CtrFlavor<<C as BlockSizeUser>::BlockSize>>::CtrNonce: Sync,

§

impl<C, F> Unpin for CtrCore<C, F>
where C: Unpin, <F as CtrFlavor<<C as BlockSizeUser>::BlockSize>>::CtrNonce: Unpin,

§

impl<C, F> UnwindSafe for CtrCore<C, F>

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§

default unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. 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> KeyIvInit for T
where T: InnerIvInit, <T as InnerUser>::Inner: KeyInit,

source§

fn new( key: &GenericArray<u8, <T as KeySizeUser>::KeySize>, iv: &GenericArray<u8, <T as IvSizeUser>::IvSize>, ) -> T

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

fn new_from_slices(key: &[u8], iv: &[u8]) -> Result<T, 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 for T
where T: InnerUser, <T as InnerUser>::Inner: KeySizeUser,

§

type KeySize = <<T as InnerUser>::Inner as KeySizeUser>::KeySize

Key size in bytes.
source§

fn key_size() -> usize

Return key size in bytes.
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.