[][src]Struct msp432e4::des::RegisterBlock

#[repr(C)]
pub struct RegisterBlock {
    pub key3_l: KEY3_L,
    pub key3_h: KEY3_H,
    pub key2_l: KEY2_L,
    pub key2_h: KEY2_H,
    pub key1_l: KEY1_L,
    pub key1_h: KEY1_H,
    pub iv_l: IV_L,
    pub iv_h: IV_H,
    pub ctrl: CTRL,
    pub length: LENGTH,
    pub data_l: DATA_L,
    pub data_h: DATA_H,
    pub revision: REVISION,
    pub sysconfig: SYSCONFIG,
    pub sysstatus: SYSSTATUS,
    pub irqstatus: IRQSTATUS,
    pub irqenable: IRQENABLE,
    pub dirtybits: DIRTYBITS,
}

Register block

Fields

key3_l: KEY3_L

0x00 - DES Key 3 LSW for 192-Bit Key

key3_h: KEY3_H

0x04 - DES Key 3 MSW for 192-Bit Key

key2_l: KEY2_L

0x08 - DES Key 2 LSW for 128-Bit Key

key2_h: KEY2_H

0x0c - DES Key 2 MSW for 128-Bit Key

key1_l: KEY1_L

0x10 - DES Key 1 LSW for 64-Bit Key

key1_h: KEY1_H

0x14 - DES Key 1 MSW for 64-Bit Key

iv_l: IV_L

0x18 - DES Initialization Vector

iv_h: IV_H

0x1c - DES Initialization Vector

ctrl: CTRL

0x20 - DES Control

length: LENGTH

0x24 - DES Cryptographic Data Length

data_l: DATA_L

0x28 - DES LSW Data RW

data_h: DATA_H

0x2c - DES MSW Data RW

revision: REVISION

0x30 - DES Revision Number

sysconfig: SYSCONFIG

0x34 - DES System Configuration

sysstatus: SYSSTATUS

0x38 - DES System Status

irqstatus: IRQSTATUS

0x3c - DES Interrupt Status

irqenable: IRQENABLE

0x40 - DES Interrupt Enable

dirtybits: DIRTYBITS

0x44 - DES Dirty Bits

Auto Trait Implementations

Blanket Implementations

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> Into<U> for T where
    U: From<T>, 
[src]

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

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.

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self