#[repr(C)]pub struct omac_state {
pub cipher_idx: c_int,
pub buflen: c_int,
pub blklen: c_int,
pub block: [c_uchar; 128],
pub prev: [c_uchar; 128],
pub Lu: [[c_uchar; 128]; 2],
pub key: symmetric_key,
}Fields§
§cipher_idx: c_int§buflen: c_int§blklen: c_int§block: [c_uchar; 128]§prev: [c_uchar; 128]§Lu: [[c_uchar; 128]; 2]§key: symmetric_keyTrait Implementations§
Source§impl Clone for omac_state
impl Clone for omac_state
impl Copy for omac_state
Auto Trait Implementations§
impl Freeze for omac_state
impl RefUnwindSafe for omac_state
impl !Send for omac_state
impl !Sync for omac_state
impl Unpin for omac_state
impl UnwindSafe for omac_state
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