#[repr(u8)]pub enum Aesmodeselect {
Ecb = 0,
Cbc = 1,
Ofb = 2,
Cfb = 3,
Counter = 4,
Ccm = 5,
Gcm = 6,
}
Expand description
AES Modes of operation
Value on reset: 0
Variants§
Ecb = 0
0: Electronic code book mode
Cbc = 1
1: Cipher block chaining mode
Ofb = 2
2: Output feedback mode
Cfb = 3
3: Cipher feedback mode
Counter = 4
4: Counter mode
Ccm = 5
5: CCM mode
Gcm = 6
6: Galois counter mode
Trait Implementations§
Source§impl Clone for Aesmodeselect
impl Clone for Aesmodeselect
Source§fn clone(&self) -> Aesmodeselect
fn clone(&self) -> Aesmodeselect
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for Aesmodeselect
impl Debug for Aesmodeselect
Source§impl PartialEq for Aesmodeselect
impl PartialEq for Aesmodeselect
impl Copy for Aesmodeselect
impl Eq for Aesmodeselect
impl IsEnum for Aesmodeselect
impl StructuralPartialEq for Aesmodeselect
Auto Trait Implementations§
impl Freeze for Aesmodeselect
impl RefUnwindSafe for Aesmodeselect
impl Send for Aesmodeselect
impl Sync for Aesmodeselect
impl Unpin for Aesmodeselect
impl UnwindSafe for Aesmodeselect
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