#[repr(u8)]pub enum CipherId {
Aes256Gcm = 1,
}Expand description
Identifies the symmetric cipher used.
Variants§
Aes256Gcm = 1
AES-256 in Galois/Counter Mode (RFC 5116).
Trait Implementations§
impl Copy for CipherId
impl Eq for CipherId
impl StructuralPartialEq for CipherId
Auto Trait Implementations§
impl Freeze for CipherId
impl RefUnwindSafe for CipherId
impl Send for CipherId
impl Sync for CipherId
impl Unpin for CipherId
impl UnsafeUnpin for CipherId
impl UnwindSafe for CipherId
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more