#[non_exhaustive]pub enum SecretStorageEncryptionAlgorithm {
V1AesHmacSha2(SecretStorageV1AesHmacSha2Properties),
}
Expand description
An algorithm and its properties, used to encrypt a secret.
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.
V1AesHmacSha2(SecretStorageV1AesHmacSha2Properties)
Encrypted using the m.secret_storage.v1.aes-hmac-sha2
algorithm.
Secrets using this method are encrypted using AES-CTR-256 and authenticated using HMAC-SHA-256.
Implementations§
source§impl SecretStorageEncryptionAlgorithm
impl SecretStorageEncryptionAlgorithm
sourcepub fn properties(&self) -> Cow<'_, Map<String, Value>>
pub fn properties(&self) -> Cow<'_, Map<String, Value>>
The algorithm-specific properties.
The returned JSON object won’t contain the algorithm
field, use Self::algorithm()
to
access it.
Prefer to use the public variants of SecretStorageEncryptionAlgorithm
where possible; this
method is meant to be used for custom algorithms only.
Trait Implementations§
source§impl Clone for SecretStorageEncryptionAlgorithm
impl Clone for SecretStorageEncryptionAlgorithm
source§fn clone(&self) -> SecretStorageEncryptionAlgorithm
fn clone(&self) -> SecretStorageEncryptionAlgorithm
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<'de> Deserialize<'de> for SecretStorageEncryptionAlgorithm
impl<'de> Deserialize<'de> for SecretStorageEncryptionAlgorithm
source§fn deserialize<D>(
deserializer: D,
) -> Result<SecretStorageEncryptionAlgorithm, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>(
deserializer: D,
) -> Result<SecretStorageEncryptionAlgorithm, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Serialize for SecretStorageEncryptionAlgorithm
impl Serialize for SecretStorageEncryptionAlgorithm
source§fn serialize<S>(
&self,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
fn serialize<S>(
&self,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for SecretStorageEncryptionAlgorithm
impl RefUnwindSafe for SecretStorageEncryptionAlgorithm
impl Send for SecretStorageEncryptionAlgorithm
impl Sync for SecretStorageEncryptionAlgorithm
impl Unpin for SecretStorageEncryptionAlgorithm
impl UnwindSafe for SecretStorageEncryptionAlgorithm
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)