Trait openidconnect::JsonWebKeyUse[][src]

pub trait JsonWebKeyUse: Debug + DeserializeOwned + Serialize + 'static {
    fn allows_signature(&self) -> bool;
fn allows_encryption(&self) -> bool; }
Expand description

Allowed key usage.

Required methods

Returns true if the associated key may be used for digital signatures, or false otherwise.

Returns true if the associated key may be used for encryption, or false otherwise.

Implementors