1
0
mirror of https://github.com/matrix-org/matrix-authentication-service.git synced 2025-11-20 12:02:22 +03:00

JWK signer

This commit is contained in:
Quentin Gliech
2022-08-29 15:43:06 +02:00
parent dd51c4a51b
commit 945719a5a1
7 changed files with 600 additions and 91 deletions

View File

@@ -24,12 +24,12 @@ pub mod jwk;
pub(crate) mod jwt;
mod keystore;
pub(crate) mod rsa;
pub mod signer;
pub mod verifier;
pub use futures_util::future::Either;
pub use self::{
jwk::{JsonWebKey, JsonWebKeySet},
jwt::{DecodedJsonWebToken, JsonWebSignatureHeader, JsonWebTokenParts, Jwt, JwtSignatureError},
keystore::{
DynamicJwksStore, SharedSecret, SigningKeystore, StaticJwksStore, StaticKeystore,