#[repr(C)]pub struct xcbc_state {
pub K: [[c_uchar; 128]; 3],
pub IV: [c_uchar; 128],
pub key: symmetric_key,
pub cipher: c_int,
pub buflen: c_int,
pub blocksize: c_int,
}
Fields§
§K: [[c_uchar; 128]; 3]
§IV: [c_uchar; 128]
§key: symmetric_key
§cipher: c_int
§buflen: c_int
§blocksize: c_int
Trait Implementations§
Source§impl Clone for xcbc_state
impl Clone for xcbc_state
impl Copy for xcbc_state
Auto Trait Implementations§
impl Freeze for xcbc_state
impl RefUnwindSafe for xcbc_state
impl !Send for xcbc_state
impl !Sync for xcbc_state
impl Unpin for xcbc_state
impl UnwindSafe for xcbc_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