moq-token 0.5.15

Media over QUIC - Token Generation and Validation
Documentation
//! 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 error;
mod generate;
mod key;
mod key_id;
mod set;

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