jwt_simple::algorithms

Trait RSAPublicKeyLike

Source
pub trait RSAPublicKeyLike {
    // Required methods
    fn jwt_alg_name() -> &'static str;
    fn public_key(&self) -> &RSAPublicKey;
    fn key_id(&self) -> &Option<String>;
    fn set_key_id(&mut self, key_id: String);
    fn hash(message: &[u8]) -> Vec<u8>;
    fn padding_scheme(&self) -> PaddingScheme;

    // Provided method
    fn verify_token<CustomClaims: Serialize + DeserializeOwned>(
        &self,
        token: &str,
        options: Option<VerificationOptions>,
    ) -> Result<JWTClaims<CustomClaims>, Error> { ... }
}

Required Methods§

Source

fn jwt_alg_name() -> &'static str

Source

fn public_key(&self) -> &RSAPublicKey

Source

fn key_id(&self) -> &Option<String>

Source

fn set_key_id(&mut self, key_id: String)

Source

fn hash(message: &[u8]) -> Vec<u8>

Source

fn padding_scheme(&self) -> PaddingScheme

Provided Methods§

Source

fn verify_token<CustomClaims: Serialize + DeserializeOwned>( &self, token: &str, options: Option<VerificationOptions>, ) -> Result<JWTClaims<CustomClaims>, Error>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§