jwt2 0.1.0-alpha.0

JSON Web Tokens done right... hopefully.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![cfg_attr(docsrs, feature(doc_cfg))]

pub mod header;
pub mod repr;
pub mod sign;

pub mod jwt;
pub mod util;

pub use header::{Header, Algorithm, ValidateHeaderParams, RecommendHeaderParams};
pub use sign::{JwsSigner, JwsVerifier, SigningAlgorithm};

pub use jwt::JwtData;
pub use util::WithKeyId;

// TODO: Crate-level documentation.