jwt_simple::algorithms

Trait RSAKeyPairLike

Source
pub trait RSAKeyPairLike {
    // Required methods
    fn jwt_alg_name() -> &'static str;
    fn key_pair(&self) -> &RSAKeyPair;
    fn key_id(&self) -> &Option<String>;
    fn metadata(&self) -> &Option<KeyMetadata>;
    fn attach_metadata(&mut self, metadata: KeyMetadata) -> Result<(), Error>;
    fn hash(message: &[u8]) -> Vec<u8>;
    fn padding_scheme(&self) -> PaddingScheme;

    // Provided method
    fn sign<CustomClaims: Serialize + DeserializeOwned>(
        &self,
        claims: JWTClaims<CustomClaims>,
    ) -> Result<String, Error> { ... }
}

Required Methods§

Source

fn jwt_alg_name() -> &'static str

Source

fn key_pair(&self) -> &RSAKeyPair

Source

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

Source

fn metadata(&self) -> &Option<KeyMetadata>

Source

fn attach_metadata(&mut self, metadata: KeyMetadata) -> Result<(), Error>

Source

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

Source

fn padding_scheme(&self) -> PaddingScheme

Provided Methods§

Source

fn sign<CustomClaims: Serialize + DeserializeOwned>( &self, claims: JWTClaims<CustomClaims>, ) -> Result<String, 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§