Struct cbc::Encryptor

source ·
pub struct Encryptor<C>{ /* private fields */ }
Expand description

CBC mode encryptor.

Trait Implementations§

source§

impl<C> AlgorithmName for Encryptor<C>

source§

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

Write algorithm name into f.
source§

impl<C> BlockEncryptMut for Encryptor<C>

source§

fn encrypt_with_backend_mut( &mut self, f: impl BlockClosure<BlockSize = Self::BlockSize>, )

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

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

Encrypt single inout block.
source§

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

Encrypt inout blocks.
source§

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

Encrypt single block in-place.
source§

fn encrypt_block_b2b_mut( &mut self, in_block: &GenericArray<u8, Self::BlockSize>, out_block: &mut GenericArray<u8, Self::BlockSize>, )

Encrypt in_block and write result to out_block.
source§

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

Encrypt blocks in-place.
source§

fn encrypt_blocks_b2b_mut( &mut self, in_blocks: &[GenericArray<u8, Self::BlockSize>], out_blocks: &mut [GenericArray<u8, Self::BlockSize>], ) -> Result<(), NotEqualError>

Encrypt blocks buffer-to-buffer. Read more
source§

fn encrypt_padded_inout_mut<'inp, 'out, P>( self, data: InOutBufReserved<'inp, 'out, u8>, ) -> Result<&'out [u8], PadError>
where P: Padding<Self::BlockSize>,

Pad input and encrypt. Returns resulting ciphertext slice. Read more
source§

fn encrypt_padded_mut<P>( self, buf: &mut [u8], msg_len: usize, ) -> Result<&[u8], PadError>
where P: Padding<Self::BlockSize>,

Pad input and encrypt in-place. Returns resulting ciphertext slice. Read more
source§

fn encrypt_padded_b2b_mut<'a, P>( self, msg: &[u8], out_buf: &'a mut [u8], ) -> Result<&'a [u8], PadError>
where P: Padding<Self::BlockSize>,

Pad input and encrypt buffer-to-buffer. Returns resulting ciphertext slice. Read more
source§

fn encrypt_padded_vec_mut<P>(self, msg: &[u8]) -> Vec<u8>
where P: Padding<Self::BlockSize>,

Pad input and encrypt into a newly allocated Vec. Returns resulting ciphertext Vec.
source§

impl<C> BlockSizeUser for Encryptor<C>

§

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> Clone for Encryptor<C>

source§

fn clone(&self) -> Encryptor<C>

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> Debug for Encryptor<C>

source§

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

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

impl<C> InnerIvInit for Encryptor<C>

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> InnerUser for Encryptor<C>

§

type Inner = C

Inner type.
source§

impl<C> IvSizeUser for Encryptor<C>

§

type IvSize = <C as BlockSizeUser>::BlockSize

Initialization vector size in bytes.
source§

fn iv_size() -> usize

Return IV size in bytes.
source§

impl<C> IvState for Encryptor<C>

source§

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

Returns current IV state.

Auto Trait Implementations§

§

impl<C> Freeze for Encryptor<C>

§

impl<C> RefUnwindSafe for Encryptor<C>

§

impl<C> Send for Encryptor<C>
where C: Send,

§

impl<C> Sync for Encryptor<C>
where C: Sync,

§

impl<C> Unpin for Encryptor<C>

§

impl<C> UnwindSafe for Encryptor<C>

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.