#[repr(u8)]pub enum CryptoOp {
AES = 0,
_RESERVED_1 = 1,
_RESERVED_2 = 2,
GFMUL = 3,
SHA = 4,
CMAC = 5,
OTHERS_6 = 6,
OTHERS_7 = 7,
}Variants§
AES = 0
AES
_RESERVED_1 = 1
_RESERVED_2 = 2
GFMUL = 3
GFMUL(If Included)
SHA = 4
SHA2 (If Included)
CMAC = 5
CMAC (If Included)
OTHERS_6 = 6
others - RFU (Defaults to 1st available OP)
OTHERS_7 = 7
others - RFU (Defaults to 1st available OP)
Implementations§
Trait Implementations§
Source§impl Ord for CryptoOp
impl Ord for CryptoOp
Source§impl PartialOrd for CryptoOp
impl PartialOrd for CryptoOp
impl Copy for CryptoOp
impl Eq for CryptoOp
impl StructuralPartialEq for CryptoOp
Auto Trait Implementations§
impl Freeze for CryptoOp
impl RefUnwindSafe for CryptoOp
impl Send for CryptoOp
impl Sync for CryptoOp
impl Unpin for CryptoOp
impl UnwindSafe for CryptoOp
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