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::*;