[][src]Crate min_jwt

Minimal JWT

JSON Web Tokens are a method for representing claims between two parties.

JWTs are useful in some scenarios, but there are many use cases where JWTs are not ideal. If you search on the Internet, you can find many articles and comments which may help you decide if JWTs are appropriate for your use case.

This crate currently provides basic functionality to sign and verify the signatures of JWTs.

Modules

signer

Sign JWTs using various signature algorithms.

verifier

Verify various types of signatures for a JWT.

Structs

Error

Represents all possible errors from this crate.

SignatureVerifiedJwt

Represents a JSON Web Token which has had its signature verified.

UnverifiedJwt

Represents an unverified JSON Web Token.