[][src]Trait jwt::token::signed::SignWithKey

pub trait SignWithKey<T> {
    fn sign_with_key(self, key: &dyn SigningAlgorithm) -> Result<T, Error>;
}

Allow objects to be signed with a key.

Required methods

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

Loading content...

Implementors

impl<C: ToBase64> SignWithKey<String> for C[src]

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

Loading content...