Struct esp_idf_sys::esp_gcm_context
source · #[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: c_int,
pub aad: *const c_uchar,
pub aes_ctx: esp_aes_context,
pub gcm_state: esp_aes_gcm_state,
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: c_int
§aad: *const c_uchar
< The additional data.
aes_ctx: esp_aes_context
§gcm_state: esp_aes_gcm_state
§ctx_soft: *mut c_void
Trait 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
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,
§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)