jwt_simple::algorithms

Trait ECDSAP384PublicKeyLike

Source
pub trait ECDSAP384PublicKeyLike {
    // Required methods
    fn jwt_alg_name() -> &'static str;
    fn public_key(&self) -> &P384PublicKey;
    fn key_id(&self) -> &Option<String>;
    fn set_key_id(&mut self, key_id: String);

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

Required Methods§

Source

fn jwt_alg_name() -> &'static str

Source

fn public_key(&self) -> &P384PublicKey

Source

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

Source

fn set_key_id(&mut self, key_id: String)

Provided Methods§

Source

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

Source

fn create_key_id(&mut self) -> &str

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§