Trait openidconnect::JweContentEncryptionAlgorithm[][src]

pub trait JweContentEncryptionAlgorithm<JT>: Clone + Debug + DeserializeOwned + Serialize + 'static where
    JT: JsonWebKeyType
{ fn key_type(&self) -> Result<JT, String>; }
Expand description

JSON Web Encryption (JWE) content encryption algorithm.

Required methods

Returns the type of key required to use this encryption algorithm.

Implementors