#[repr(C)]pub struct esp_gcm_context {Show 15 fields
    pub H: [u8; 16],
    pub ghash: [u8; 16],
    pub J0: [u8; 16],
    pub HL: [u64; 16],
    pub HH: [u64; 16],
    pub ori_j0: [u8; 16],
    pub iv: *const u8,
    pub iv_len: usize,
    pub aad_len: u64,
    pub data_len: usize,
    pub mode: i32,
    pub aad: *const u8,
    pub aes_ctx: esp_aes_context,
    pub gcm_state: u32,
    pub ctx_soft: *mut c_void,
}Expand description
\brief The GCM context structure.
Fields§
§H: [u8; 16]< Initial hash value
ghash: [u8; 16]< GHASH value.
J0: [u8; 16]§HL: [u64; 16]< Precalculated HTable low.
HH: [u64; 16]< Precalculated HTable high.
ori_j0: [u8; 16]< J0 from first iteration.
iv: *const u8§iv_len: usize< The length of IV.
aad_len: u64< The total length of the additional data.
data_len: usize§mode: i32§aad: *const u8< The additional data.
aes_ctx: esp_aes_context§gcm_state: u32§ctx_soft: *mut c_voidTrait Implementations§
Source§impl Clone for esp_gcm_context
 
impl Clone for esp_gcm_context
Source§fn clone(&self) -> esp_gcm_context
 
fn clone(&self) -> esp_gcm_context
Returns a copy of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moreSource§impl Debug for esp_gcm_context
 
impl Debug for esp_gcm_context
Source§impl Default for esp_gcm_context
 
impl Default for esp_gcm_context
Source§fn default() -> esp_gcm_context
 
fn default() -> esp_gcm_context
Returns the “default value” for a type. Read more
impl Copy for esp_gcm_context
Auto Trait Implementations§
impl Freeze for esp_gcm_context
impl RefUnwindSafe for esp_gcm_context
impl !Send for esp_gcm_context
impl !Sync for esp_gcm_context
impl Unpin for esp_gcm_context
impl UnwindSafe for esp_gcm_context
Blanket Implementations§
§impl<T> Any for Twhere
    T: 'static + ?Sized,
 
impl<T> Any for Twhere
    T: 'static + ?Sized,
§impl<T> Borrow<T> for Twhere
    T: ?Sized,
 
impl<T> Borrow<T> for Twhere
    T: ?Sized,
§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
    T: Clone,
 
impl<T> CloneToUninit for Twhere
    T: Clone,
§unsafe fn clone_to_uninit(&self, dst: *mut u8)
 
unsafe fn clone_to_uninit(&self, dst: *mut u8)
🔬This is a nightly-only experimental API. (
clone_to_uninit)