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 generate;
12mod key;
13mod key_id;
14mod set;
15
16pub use algorithm::*;
17pub use claims::*;
18pub use error::*;
19pub use key::*;
20pub use key_id::*;
21pub use set::*;