Trait jwt::algorithm::SigningAlgorithm[][src]

pub trait SigningAlgorithm {
    fn algorithm_type(&self) -> AlgorithmType;
fn sign(&self, header: &str, claims: &str) -> Result<String, Error>; }
Expand description

An algorithm capable of signing base64 encoded header and claims strings. strings.

Required methods

Implementations on Foreign Types

Implementors