esp_idf_sys

Type Alias mbedtls_aes_xts_context

Source
pub type mbedtls_aes_xts_context = esp_aes_xts_context;
Expand description

\brief The AES XTS context-type definition.

Aliased Type§

struct mbedtls_aes_xts_context {
    pub crypt: esp_aes_context,
    pub tweak: esp_aes_context,
}

Fields§

§crypt: esp_aes_context

< The AES context to use for AES block encryption or decryption.

§tweak: esp_aes_context

< The AES context used for tweak computation.

Trait Implementations

Source§

impl Clone for esp_aes_xts_context

Source§

fn clone(&self) -> esp_aes_xts_context

Returns a copy of the value. Read more
1.0.0§

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

Performs copy-assignment from source. Read more
Source§

impl Debug for esp_aes_xts_context

Source§

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

Formats the value using the given formatter. Read more
Source§

impl Default for esp_aes_xts_context

Source§

fn default() -> esp_aes_xts_context

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

impl Copy for esp_aes_xts_context