Skip to main content

AesHash

Struct AesHash 

Source
pub struct AesHash { /* private fields */ }

Implementations§

Source§

impl AesHash

Source

pub const fn crypto_clrirq_reg(&self) -> &'static Reg<CryptoClrirqReg_SPEC, RW>

Crypto Clear interrupt request

Source

pub const fn crypto_ctrl_reg(&self) -> &'static Reg<CryptoCtrlReg_SPEC, RW>

Crypto Control register

Source

pub const fn crypto_dest_addr_reg( &self, ) -> &'static Reg<CryptoDestAddrReg_SPEC, RW>

Crypto DMA destination memory

Source

pub const fn crypto_fetch_addr_reg( &self, ) -> &'static Reg<CryptoFetchAddrReg_SPEC, RW>

Crypto DMA fetch register

Source

pub const fn crypto_keys_start(&self) -> &'static Reg<CryptoKeysStart_SPEC, RW>

Crypto First position of the AES keys storage memory

Source

pub const fn crypto_len_reg(&self) -> &'static Reg<CryptoLenReg_SPEC, RW>

Crypto Length of the input block in bytes

Source

pub const fn crypto_mreg0_reg(&self) -> &'static Reg<CryptoMreg0Reg_SPEC, RW>

Crypto Mode depended register 0

Source

pub const fn crypto_mreg1_reg(&self) -> &'static Reg<CryptoMreg1Reg_SPEC, RW>

Crypto Mode depended register 1

Source

pub const fn crypto_mreg2_reg(&self) -> &'static Reg<CryptoMreg2Reg_SPEC, RW>

Crypto Mode depended register 2

Source

pub const fn crypto_mreg3_reg(&self) -> &'static Reg<CryptoMreg3Reg_SPEC, RW>

Crypto Mode depended register 3

Source

pub const fn crypto_start_reg(&self) -> &'static Reg<CryptoStartReg_SPEC, RW>

Crypto Start calculation

Source

pub const fn crypto_status_reg(&self) -> &'static Reg<CryptoStatusReg_SPEC, RW>

Crypto Status register

Trait Implementations§

Source§

impl Clone for AesHash

Source§

fn clone(&self) -> AesHash

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Copy for AesHash

Source§

impl Eq for AesHash

Source§

impl PartialEq for AesHash

Source§

fn eq(&self, other: &AesHash) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Send for AesHash

AES_HASH registers

Source§

impl StructuralPartialEq for AesHash

Source§

impl Sync for AesHash

Auto Trait Implementations§

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

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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, 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.