Module min_jwt::verify[][src]

Expand description

Verify various types of signatures for a JWT.

The verify function verifies JWTs.

The function requires a Verifier which abstracts the implementation and necessary parameters for verifying the signed data. This crate either directly implements the Verifier trait on the foreign types or it creates a wrapping type which implements the Verifier trait.

Find the implementations on foreign types and implementators listed under the Verifier’s documentation to discover what is available.

See the implementation modules for specific examples.

Traits

A type which can verify a signature of a given message.