Enum rust_cryptoauthlib::CipherAlgorithm [−][src]
pub enum CipherAlgorithm {
Ctr(CipherParam),
Cfb(CipherParam),
Ofb(CipherParam),
Xts(CipherParam),
Ecb(CipherParam),
Cbc(CipherParam),
CbcPkcs7(CipherParam),
}
Expand description
Type of Cipher algorithm
Variants
Ctr(CipherParam)
Counter
Tuple Fields of Ctr
0: CipherParam
Cfb(CipherParam)
Cipher Feedback
Tuple Fields of Cfb
0: CipherParam
Ofb(CipherParam)
Output Feedback
Tuple Fields of Ofb
0: CipherParam
Xts(CipherParam)
XEX-based tweaked-codebook mode with ciphertext stealing
Tuple Fields of Xts
0: CipherParam
Ecb(CipherParam)
Electronic Codebook
Tuple Fields of Ecb
0: CipherParam
Cbc(CipherParam)
Cipher-Block Chaining
Tuple Fields of Cbc
0: CipherParam
CbcPkcs7(CipherParam)
Cipher-Block Chaining with PKCS#7 padding
Tuple Fields of CbcPkcs7
0: CipherParam
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for CipherAlgorithm
impl Send for CipherAlgorithm
impl Sync for CipherAlgorithm
impl Unpin for CipherAlgorithm
impl UnwindSafe for CipherAlgorithm
Blanket Implementations
Mutably borrows from an owned value. Read more