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

Add a dedicated keystore crate

This commit is contained in:
Quentin Gliech
2022-08-31 18:25:20 +02:00
parent 768c48234a
commit e1d50b818e
49 changed files with 1455 additions and 819 deletions

View File

@@ -19,14 +19,8 @@
pub mod claims;
pub mod constraints;
pub(crate) mod jwa;
pub mod jwa;
pub mod jwk;
pub(crate) mod jwt;
mod keystore;
pub mod jwt;
pub mod signer;
pub mod verifier;
pub use self::{
jwt::{DecodedJsonWebToken, JsonWebSignatureHeader, JsonWebTokenParts, Jwt, JwtSignatureError},
keystore::{SigningKeystore, StaticKeystore, VerifyingKeystore},
};