moq-token 0.5.11

Media over QUIC - Token Generation and Validation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! JWT token generation and validation for MoQ authentication.
//!
//! Create and verify JWT tokens used for authorizing publish/subscribe operations in MoQ.
//! Tokens specify which broadcast paths a client can publish to and consume from.
//!
//! See [`Claims`] for the JWT claims structure and [`Key`] for key management.

mod algorithm;
mod claims;
mod generate;
mod key;
mod set;

pub use algorithm::*;
pub use claims::*;
pub use key::*;
pub use set::*;