stano-security 0.1.0

JWT encode/decode (ES256) and generic SecurityContext<E> for auth on the Stano platform
Documentation
1
2
3
4
5
6
7
8
//! JWT encode/decode (ES256) and a generic [`SecurityContext<E>`] for auth.
#![warn(missing_docs)]

mod jwt;
mod security_context;

pub use jwt::{decode_jwt, encode_jwt, JwtConfig, JwtError};
pub use security_context::{Claims, SecurityContext};