pub struct AtcaAesCcmCtx {
    pub cbc_mac_ctx: atca_aes_cmac_ctx_t,
    pub ctr_ctx: atca_aes_ctr_ctx_t,
    pub iv_size: u8,
    pub m: u8,
    pub counter: [u8; 16],
    pub partial_aad: [u8; 16],
    pub partial_aad_size: usize,
    pub text_size: usize,
    pub enc_cb: [u8; 16],
    pub data_size: u32,
    pub ciphertext_block: [u8; 16],
}
Expand description

Data context structure for AEAD encryption in CCM mode

Fields

cbc_mac_ctx: atca_aes_cmac_ctx_tctr_ctx: atca_aes_ctr_ctx_tiv_size: u8m: u8counter: [u8; 16]partial_aad: [u8; 16]partial_aad_size: usizetext_size: usizeenc_cb: [u8; 16]data_size: u32ciphertext_block: [u8; 16]

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.