[−][src]Trait jwt::token::signed::SignWithKey
Allow objects to be signed with a key.
Required methods
fn sign_with_key(self, key: &dyn SigningAlgorithm) -> Result<T, Error>
Implementors
impl<C: ToBase64> SignWithKey<String> for C
[src]
fn sign_with_key(self, key: &dyn SigningAlgorithm) -> Result<String, Error>
[src]
impl<H, C> SignWithKey<Token<H, C, Signed>> for Token<H, C, Unsigned> where
H: ToBase64 + JoseHeader,
C: ToBase64,
[src]
H: ToBase64 + JoseHeader,
C: ToBase64,
fn sign_with_key(
self,
key: &dyn SigningAlgorithm
) -> Result<Token<H, C, Signed>, Error>
[src]
self,
key: &dyn SigningAlgorithm
) -> Result<Token<H, C, Signed>, Error>