Enum psa_crypto::types::algorithm::AsymmetricEncryption [−][src]
pub enum AsymmetricEncryption {
RsaPkcs1v15Crypt,
RsaOaep {
hash_alg: Hash,
},
}Expand description
Enumeration of asymmetric encryption algorithms supported.
Variants
RSA PKCS#1 v1.5 encryption.
RSA OAEP encryption.
Fields of RsaOaep
hash_alg: HashA hash algorithm to use.
Trait Implementations
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Performs the conversion.
Performs the conversion.
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 AsymmetricEncryption
impl Send for AsymmetricEncryption
impl Sync for AsymmetricEncryption
impl Unpin for AsymmetricEncryption
impl UnwindSafe for AsymmetricEncryption
Blanket Implementations
Mutably borrows from an owned value. Read more