Trait jwt::token::signed::SignWithKey

source ·
pub trait SignWithKey<T> {
    // Required method
    fn sign_with_key(self, key: &impl SigningAlgorithm) -> Result<T, Error>;
}
Expand description

Allow objects to be signed with a key.

Required Methods§

source

fn sign_with_key(self, key: &impl SigningAlgorithm) -> Result<T, Error>

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<C: ToBase64> SignWithKey<String> for C

source§

impl<H, C> SignWithKey<Token<H, C, Signed>> for Token<H, C, Unsigned>
where H: ToBase64 + JoseHeader, C: ToBase64,