aes_gcm

Type Alias Ctr32BE

Source
pub(crate) type Ctr32BE<Aes> = CtrCore<Aes, Ctr32BE>;
Expand description

Counter mode with a 32-bit big endian counter.

Aliased Type§

struct Ctr32BE<Aes> { /* private fields */ }

Trait Implementations

Source§

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

Source§

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

Write algorithm name into f.
Source§

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

Source§

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

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<(), Error>

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: &GenericArray<u8, <CtrCore<C, F> as IvSizeUser>::IvSize>, ) -> CtrCore<C, F>

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>

Source§

type Inner = C

Inner type.
Source§

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

Source§

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) -> GenericArray<u8, <CtrCore<C, F> as IvSizeUser>::IvSize>

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 = <CtrCore<C, F> as BlockSizeUser>::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>

Source§

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

Counter type used inside stream cipher.
Source§

fn get_block_pos(&self) -> <CtrCore<C, F> as StreamCipherSeekCore>::Counter

Get current block position.
Source§

fn set_block_pos( &mut self, pos: <CtrCore<C, F> as StreamCipherSeekCore>::Counter, )

Set block position.