#[non_exhaustive]pub enum CoreJweContentEncryptionAlgorithm {
Aes128CbcHmacSha256,
Aes192CbcHmacSha384,
Aes256CbcHmacSha512,
Aes128Gcm,
Aes192Gcm,
Aes256Gcm,
}Expand description
OpenID Connect Core JWE encryption algorithms.
These algorithms represent the enc header parameter values for JSON Web Encryption.
The values are described in
Section 5.1 of RFC 7518.
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.
Aes128CbcHmacSha256
AES-128 CBC HMAC SHA-256 authenticated encryption.
Aes192CbcHmacSha384
AES-192 CBC HMAC SHA-384 authenticated encryption.
Aes256CbcHmacSha512
AES-256 CBC HMAC SHA-512 authenticated encryption.
Aes128Gcm
AES-128 GCM.
Aes192Gcm
AES-192 GCM.
Aes256Gcm
AES-256 GCM.
Trait Implementations§
source§impl Clone for CoreJweContentEncryptionAlgorithm
impl Clone for CoreJweContentEncryptionAlgorithm
source§fn clone(&self) -> CoreJweContentEncryptionAlgorithm
fn clone(&self) -> CoreJweContentEncryptionAlgorithm
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 CoreJweContentEncryptionAlgorithm
impl<'de> Deserialize<'de> for CoreJweContentEncryptionAlgorithm
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
source§impl PartialEq for CoreJweContentEncryptionAlgorithm
impl PartialEq for CoreJweContentEncryptionAlgorithm
source§fn eq(&self, other: &CoreJweContentEncryptionAlgorithm) -> bool
fn eq(&self, other: &CoreJweContentEncryptionAlgorithm) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Eq for CoreJweContentEncryptionAlgorithm
impl StructuralEq for CoreJweContentEncryptionAlgorithm
impl StructuralPartialEq for CoreJweContentEncryptionAlgorithm
Auto Trait Implementations§
impl RefUnwindSafe for CoreJweContentEncryptionAlgorithm
impl Send for CoreJweContentEncryptionAlgorithm
impl Sync for CoreJweContentEncryptionAlgorithm
impl Unpin for CoreJweContentEncryptionAlgorithm
impl UnwindSafe for CoreJweContentEncryptionAlgorithm
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<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.