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

Allowed key usage.

Required Methods§

source

fn allows_signature(&self) -> bool

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

source

fn allows_encryption(&self) -> bool

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

Object Safety§

This trait is not object safe.

Implementors§