Struct esp_idf_sys::esp_aes_xts_context
source · [−]#[repr(C)]pub struct esp_aes_xts_context {
pub crypt: esp_aes_context,
pub tweak: esp_aes_context,
}
Expand description
\brief The AES XTS context-type definition.
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
sourceimpl Clone for esp_aes_xts_context
impl Clone for esp_aes_xts_context
sourcefn clone(&self) -> esp_aes_xts_context
fn clone(&self) -> esp_aes_xts_context
Returns a copy of the value. Read more
1.0.0fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for esp_aes_xts_context
impl Debug for esp_aes_xts_context
sourceimpl Default for esp_aes_xts_context
impl Default for esp_aes_xts_context
sourcefn default() -> esp_aes_xts_context
fn default() -> esp_aes_xts_context
Returns the “default value” for a type. Read more
impl Copy for esp_aes_xts_context
Auto Trait Implementations
impl RefUnwindSafe for esp_aes_xts_context
impl Send for esp_aes_xts_context
impl Sync for esp_aes_xts_context
impl Unpin for esp_aes_xts_context
impl UnwindSafe for esp_aes_xts_context
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstablefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
fn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
Uses borrowed data to replace owned data, usually by cloning. Read more