#[non_exhaustive]pub enum CipherAlg {
Show 16 variants
Aes128,
Aes192,
Aes256,
TripleDes,
Rsa1024,
Rsa2048,
Rsa3072,
Rsa4096,
EccP256,
EccP384,
EccP521,
Sha1,
Sha256,
Sha384,
Sha512,
Other(String<OTHER_DETAIL_MAX>),
}Expand description
Cipher algorithms advertised in CCI 'A1'.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Aes128
Aes192
Aes256
TripleDes
Rsa1024
Rsa2048
Rsa3072
Rsa4096
EccP256
EccP384
EccP521
Sha1
Sha256
Sha384
Sha512
Other(String<OTHER_DETAIL_MAX>)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CipherAlg
impl RefUnwindSafe for CipherAlg
impl Send for CipherAlg
impl Sync for CipherAlg
impl Unpin for CipherAlg
impl UnsafeUnpin for CipherAlg
impl UnwindSafe for CipherAlg
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