block_modes

Struct Ecb

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

Electronic Codebook (ECB) block cipher mode instance.

Note that new method ignores IV, so during initialization you can just pass Default::default() instead.

Trait Implementations§

Source§

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

Source§

type IvSize = UTerm

Initialization Vector size.
Source§

fn new(cipher: C, _iv: &GenericArray<u8, U0>) -> Self

Create a new block mode instance from initialized block cipher 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_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 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 Ecb<C, P>

Source§

fn clone(&self) -> Ecb<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

Auto Trait Implementations§

§

impl<C, P> Freeze for Ecb<C, P>
where C: Freeze,

§

impl<C, P> RefUnwindSafe for Ecb<C, P>

§

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

§

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

§

impl<C, P> Unpin for Ecb<C, P>
where C: Unpin, P: Unpin,

§

impl<C, P> UnwindSafe for Ecb<C, P>
where C: 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.