picky 6.3.0

Portable X.509, PKI, JOSE and HTTP signature implementation.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! JOSE framework subset implementation.
//!
//! A Json Web Token (JWT) comes in two flavors, roughly:
//! - Json Web Encryption (JWE), used to transfer data securely
//! - Json Web Signature (JWS), used to assert one's identity
//!
//! Common part is known as the "JOSE header".
//!
//! JSON Web Key (JWK) are used to represent cryptographic keys using JSON.

pub mod jwe;
pub mod jwk;
pub mod jws;
pub mod jwt;