Skip to main content

moq_token/
lib.rs

1//! JWT token generation and validation for MoQ authentication.
2//!
3//! Create and verify JWT tokens used for authorizing publish/subscribe operations in MoQ.
4//! Tokens specify which broadcast paths a client can publish to and consume from.
5//!
6//! See [`Claims`] for the JWT claims structure and [`Key`] for key management.
7
8mod algorithm;
9mod claims;
10mod error;
11mod fs;
12mod generate;
13mod key;
14mod key_id;
15mod path;
16mod set;
17
18pub use algorithm::*;
19pub use claims::*;
20pub use error::*;
21pub use key::*;
22pub use key_id::*;
23pub use set::*;