Struct atsame70n20b_pac::aes::RegisterBlock[][src]

#[repr(C)]pub struct RegisterBlock {
    pub cr: CR,
    pub mr: MR,
    pub ier: IER,
    pub idr: IDR,
    pub imr: IMR,
    pub isr: ISR,
    pub keywr: [KEYWR; 8],
    pub idatar: [IDATAR; 4],
    pub odatar: [ODATAR; 4],
    pub ivr: [IVR; 4],
    pub aadlenr: AADLENR,
    pub clenr: CLENR,
    pub ghashr: [GHASHR; 4],
    pub tagr: [TAGR; 4],
    pub ctrr: CTRR,
    pub gcmhr: [GCMHR; 4],
    // some fields omitted
}

Register block

Fields

cr: CR

0x00 - Control Register

mr: MR

0x04 - Mode Register

ier: IER

0x10 - Interrupt Enable Register

idr: IDR

0x14 - Interrupt Disable Register

imr: IMR

0x18 - Interrupt Mask Register

isr: ISR

0x1c - Interrupt Status Register

keywr: [KEYWR; 8]

0x20 - Key Word Register

idatar: [IDATAR; 4]

0x40 - Input Data Register

odatar: [ODATAR; 4]

0x50 - Output Data Register

ivr: [IVR; 4]

0x60 - Initialization Vector Register

aadlenr: AADLENR

0x70 - Additional Authenticated Data Length Register

clenr: CLENR

0x74 - Plaintext/Ciphertext Length Register

ghashr: [GHASHR; 4]

0x78 - GCM Intermediate Hash Word Register

tagr: [TAGR; 4]

0x88 - GCM Authentication Tag Word Register

ctrr: CTRR

0x98 - GCM Encryption Counter Value Register

gcmhr: [GCMHR; 4]

0x9c - GCM H Word Register

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.