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