pub enum SecretEncryptionAlgorithm {
SecretStorageV1AesHmacSha2 {
iv: Base64,
mac: Base64,
},
}Available on crate feature
events only.Expand description
An algorithm and its properties, used to encrypt a secret.
Variants§
SecretStorageV1AesHmacSha2
Fields
Encrypted using the m.secrect_storage.v1.aes-hmac-sha2 algorithm.
Secrets using this method are encrypted using AES-CTR-256 and authenticated using HMAC-SHA-256.
Trait Implementations§
source§impl Clone for SecretEncryptionAlgorithm
impl Clone for SecretEncryptionAlgorithm
source§fn clone(&self) -> SecretEncryptionAlgorithm
fn clone(&self) -> SecretEncryptionAlgorithm
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 SecretEncryptionAlgorithm
impl Debug for SecretEncryptionAlgorithm
source§impl<'de> Deserialize<'de> for SecretEncryptionAlgorithm
impl<'de> Deserialize<'de> for SecretEncryptionAlgorithm
source§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