paserk 0.4.0

Platform-Agnostic Serialized Keys (PASERK) for PASETO
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Cryptographic operations for PASERK.
//!
//! This module provides the cryptographic operations used by PASERK:
//!
//! - [`id`] - Key ID computation (hashing)
//! - [`wrap`] - Key wrapping operations (PIE protocol)
//! - [`pbkw`] - Password-based key wrapping (Argon2/PBKDF2)
//! - [`pke`] - Public key encryption (seal/unseal)

pub mod id;

// These modules will be implemented in later phases
pub mod pbkw;
pub mod pke;
pub mod wrap;