mas_jose/lib.rs
1// Copyright 2024 New Vector Ltd.
2// Copyright 2022-2024 The Matrix.org Foundation C.I.C.
3//
4// SPDX-License-Identifier: AGPL-3.0-only
5// Please see LICENSE in the repository root for full details.
6
7#![deny(rustdoc::broken_intra_doc_links)]
8#![allow(clippy::module_name_repetitions)]
9
10mod base64;
11pub mod claims;
12pub mod constraints;
13pub mod jwa;
14pub mod jwk;
15pub mod jwt;
16
17pub use self::base64::Base64;