Skip to main content

Aes

Struct Aes 

Source
pub struct Aes { /* private fields */ }
Available on (crate features aes or tdes) and crate feature aes only.
Expand description

Advanced Encryption Standard (AES) low-level block cipher.

Supports 128-bit, 192-bit, and 256-bit keys.

Implementations§

Source§

impl Aes

Source

pub fn new_from_slice(key: &[u8]) -> Result<Self, InvalidLength>

Create a new AES block cipher instance.

Supports key whose length is 16-bytes (128-bit), 24-bytes (192-bits), or 32-bytes (256-bits).

§Errors

Returns InvalidLength if the length of key is not any of the above.

Trait Implementations§

Source§

impl BlockCipherDecrypt for Aes

Source§

fn decrypt_blocks(&self, blocks: &mut [Block])

Decrypt blocks in-place.
Source§

fn decrypt_with_backend( &self, f: impl BlockCipherDecClosure<BlockSize = Self::BlockSize>, )

Decrypt data using backend provided to the rank-2 closure.
Source§

fn decrypt_block_inout(&self, block: InOut<'_, '_, Array<u8, Self::BlockSize>>)

Decrypt single inout block.
Source§

fn decrypt_blocks_inout( &self, blocks: InOutBuf<'_, '_, Array<u8, Self::BlockSize>>, )

Decrypt inout blocks.
Source§

fn decrypt_block(&self, block: &mut Array<u8, Self::BlockSize>)

Decrypt single block in-place.
Source§

fn decrypt_block_b2b( &self, in_block: &Array<u8, Self::BlockSize>, out_block: &mut Array<u8, Self::BlockSize>, )

Decrypt in_block and write result to out_block.
Source§

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

Decrypt blocks buffer-to-buffer. Read more
Source§

impl BlockCipherEncrypt for Aes

Source§

fn encrypt_blocks(&self, blocks: &mut [Block])

Encrypt blocks in-place.
Source§

fn encrypt_with_backend( &self, f: impl BlockCipherEncClosure<BlockSize = Self::BlockSize>, )

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

fn encrypt_block_inout(&self, block: InOut<'_, '_, Array<u8, Self::BlockSize>>)

Encrypt single inout block.
Source§

fn encrypt_blocks_inout( &self, blocks: InOutBuf<'_, '_, Array<u8, Self::BlockSize>>, )

Encrypt inout blocks.
Source§

fn encrypt_block(&self, block: &mut Array<u8, Self::BlockSize>)

Encrypt single block in-place.
Source§

fn encrypt_block_b2b( &self, in_block: &Array<u8, Self::BlockSize>, out_block: &mut Array<u8, Self::BlockSize>, )

Encrypt in_block and write result to out_block.
Source§

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

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

impl BlockSizeUser for Aes

Source§

type BlockSize = UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>

Size of the block in bytes.
Source§

fn block_size() -> usize

Return block size in bytes.
Source§

impl Debug for Aes

Source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl Freeze for Aes

§

impl RefUnwindSafe for Aes

§

impl Send for Aes

§

impl Sync for Aes

§

impl Unpin for Aes

§

impl UnsafeUnpin for Aes

§

impl UnwindSafe for Aes

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