rskit-auth 0.2.0-alpha.1

JWT, OIDC, password hashing, and request-context auth helpers
Documentation
1
2
3
4
5
6
7
8
9
//! JWT sign and verify using [`jsonwebtoken`].

mod codec;
mod config;
mod service;

pub use codec::{JwtCodec, JwtHeader};
pub use config::{AsymmetricAlgorithm, JwtAlgorithm, JwtConfig, JwtKeyMaterial, KeyPair};
pub use service::JwtService;