block_modes

Struct Pcbc

Source
pub struct Pcbc<C: BlockCipher + BlockEncrypt + BlockDecrypt, P: Padding> { /* private fields */ }
Expand description

Propagating Cipher Block Chaining (PCBC) mode instance.

Implementations§

Source§

impl<C, P> Pcbc<C, P>

Source

pub fn new( cipher: C, iv: &GenericArray<u8, <C as BlockCipher>::BlockSize>, ) -> Self

Initialize PCBC

Trait Implementations§

Source§

impl<C, P> BlockMode<C, P> for Pcbc<C, P>

Source§

type IvSize = <C as BlockCipher>::BlockSize

Initialization Vector size.
Source§

fn new(cipher: C, iv: &GenericArray<u8, C::BlockSize>) -> Self

Create a new block mode instance from initialized block cipher and IV.
Source§

fn encrypt_blocks( &mut self, blocks: &mut [GenericArray<u8, <C as BlockCipher>::BlockSize>], )

Encrypt blocks of data
Source§

fn decrypt_blocks( &mut self, blocks: &mut [GenericArray<u8, <C as BlockCipher>::BlockSize>], )

Decrypt blocks of data
Source§

fn new_fix( key: &GenericArray<u8, <C as NewBlockCipher>::KeySize>, iv: &GenericArray<u8, Self::IvSize>, ) -> Self
where C: NewBlockCipher,

Create a new block mode instance from fixed sized key and IV.
Source§

fn new_from_slices(key: &[u8], iv: &[u8]) -> Result<Self, InvalidKeyIvLength>
where C: NewBlockCipher,

Create a new block mode instance from variable size key and IV. Read more
Source§

fn encrypt(self, buffer: &mut [u8], pos: usize) -> Result<&[u8], BlockModeError>

Encrypt message in-place. Read more
Source§

fn decrypt(self, buffer: &mut [u8]) -> Result<&[u8], BlockModeError>

Decrypt message in-place. Read more
Source§

fn encrypt_vec(self, plaintext: &[u8]) -> Vec<u8>

Encrypt message and store result in vector.
Source§

fn decrypt_vec(self, ciphertext: &[u8]) -> Result<Vec<u8>, BlockModeError>

Encrypt message and store result in vector.
Source§

impl<C: Clone + BlockCipher + BlockEncrypt + BlockDecrypt, P: Clone + Padding> Clone for Pcbc<C, P>
where C::BlockSize: Clone,

Source§

fn clone(&self) -> Pcbc<C, P>

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, P> IvState<C, P> for Pcbc<C, P>

Source§

fn iv_state(&self) -> GenericArray<u8, Self::IvSize>

Returns the IV needed to process the following block. This value MUST NOT be exposed to attackers.

Auto Trait Implementations§

§

impl<C, P> Freeze for Pcbc<C, P>
where C: Freeze, <<C as BlockCipher>::BlockSize as ArrayLength<u8>>::ArrayType: Freeze,

§

impl<C, P> RefUnwindSafe for Pcbc<C, P>
where C: RefUnwindSafe, <<C as BlockCipher>::BlockSize as ArrayLength<u8>>::ArrayType: RefUnwindSafe, P: RefUnwindSafe,

§

impl<C, P> Send for Pcbc<C, P>
where C: Send, P: Send,

§

impl<C, P> Sync for Pcbc<C, P>
where C: Sync, P: Sync,

§

impl<C, P> Unpin for Pcbc<C, P>
where C: Unpin, <<C as BlockCipher>::BlockSize as ArrayLength<u8>>::ArrayType: Unpin, P: Unpin,

§

impl<C, P> UnwindSafe for Pcbc<C, P>
where C: UnwindSafe, <<C as BlockCipher>::BlockSize as ArrayLength<u8>>::ArrayType: UnwindSafe, P: UnwindSafe,

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, dst: *mut u8)

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