lib-q-zkp 0.0.5

Post-quantum Zero-Knowledge Proofs for lib-Q
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! IP (Identity Protocol) Integration Module
//!
//! This module provides high-level APIs for using lib-q-zkp with an Identity Protocol,
//! including identity proofs, anonymous authentication, and credential management.

pub mod auth;
pub mod credential;
pub mod identity;

pub use auth::*;
pub use credential::*;
pub use identity::*;