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 generate;
11mod key;
12
13pub use algorithm::*;
14pub use claims::*;
15pub use key::*;