jwt-simple 0.14.0

JWT authentication with JSON Web Token signing and verification (JWS), encryption (JWE), and custom claims. Supports RSA, ECDSA, Ed25519, and ML-DSA.
Documentation
mod eddsa;
mod es256;
mod es256k;
mod es384;
mod hmac;
#[cfg(feature = "jwe")]
pub mod jwe;
mod mldsa;
mod rsa;

pub use self::eddsa::*;
pub use self::es256::*;
pub use self::es256k::*;
pub use self::es384::*;
pub use self::hmac::*;
#[cfg(feature = "jwe")]
pub use self::jwe::*;
pub use self::mldsa::*;
pub use self::rsa::*;