jwt-verify 0.1.3

JWT verification library for AWS Cognito tokens and any OIDC-compatible IDP
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// JWK module for fetching and managing JSON Web Keys
//
// This module provides functionality for fetching, parsing, and caching JWKs
// from AWS Cognito user pools, as well as a registry for managing multiple
// JWK providers.

pub mod provider;
#[cfg(test)]
pub mod provider_test;
pub mod registry;
#[cfg(test)]
pub mod registry_test;

// No re-exports needed here as they're already re-exported in lib.rs