#[repr(C)]pub struct Params {
pub key: *const u8,
pub iv: *const u8,
pub ptr: *mut u8,
pub len: usize,
}Expand description
Parameters of encrypt
Fields§
§key: *const u8The 32 bytes key to encrypt with.
iv: *const u8The 16 bytes IV to encrypt with.
ptr: *mut u8Address of the sequence of blocks.
len: usizeLength in bytes of the sequence of blocks.
This length must be dividable by 16.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Params
impl RefUnwindSafe for Params
impl !Send for Params
impl !Sync for Params
impl Unpin for Params
impl UnwindSafe for Params
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