#[repr(C)]pub struct ocrypto_aes_gcm_ctx {
pub xkey: [u32; 60],
pub counter: [u8; 16],
pub cipher: [u8; 16],
pub x: [u8; 16],
pub m: [u8; 16],
pub position: u8,
pub length: u8,
pub key_size: u8,
pub ct_len: usize,
pub aa_len: usize,
}Expand description
@cond
Fields§
§xkey: [u32; 60]§counter: [u8; 16]§cipher: [u8; 16]§x: [u8; 16]§m: [u8; 16]§position: u8§length: u8§key_size: u8§ct_len: usize§aa_len: usizeTrait Implementations§
Source§impl Clone for ocrypto_aes_gcm_ctx
impl Clone for ocrypto_aes_gcm_ctx
Source§fn clone(&self) -> ocrypto_aes_gcm_ctx
fn clone(&self) -> ocrypto_aes_gcm_ctx
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ocrypto_aes_gcm_ctx
impl Debug for ocrypto_aes_gcm_ctx
impl Copy for ocrypto_aes_gcm_ctx
Auto Trait Implementations§
impl Freeze for ocrypto_aes_gcm_ctx
impl RefUnwindSafe for ocrypto_aes_gcm_ctx
impl Send for ocrypto_aes_gcm_ctx
impl Sync for ocrypto_aes_gcm_ctx
impl Unpin for ocrypto_aes_gcm_ctx
impl UnwindSafe for ocrypto_aes_gcm_ctx
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more