#[repr(C)]pub struct symmetric_ECB {
pub cipher: c_int,
pub blocklen: c_int,
pub key: symmetric_key,
}Expand description
A block cipher ECB structure
Fields§
§cipher: c_intThe index of the cipher chosen
blocklen: c_intThe block size of the given cipher
key: symmetric_keyThe scheduled key
Trait Implementations§
Source§impl Clone for symmetric_ECB
impl Clone for symmetric_ECB
impl Copy for symmetric_ECB
Auto Trait Implementations§
impl Freeze for symmetric_ECB
impl RefUnwindSafe for symmetric_ECB
impl !Send for symmetric_ECB
impl !Sync for symmetric_ECB
impl Unpin for symmetric_ECB
impl UnwindSafe for symmetric_ECB
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