paseto 2.0.2+1.0.3

An alternative token format to JWT
Documentation
1
2
3
4
5
6
7
8
9
10
//! Implementation of paseto version two tokens. This is the underlying implementation for Paseto
//! that doesn't offer any guarntees around ensuring "exp" isn't passed for example.
//!
//! It is recommended you use the "tokens" module which provides these features out of the box.

pub mod local;
pub mod public;

pub use self::local::*;
pub use self::public::*;