libpep 0.12.0

Library for polymorphic encryption and pseudonymization
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Low-level cryptographic [primitives] for [ElGamal](elgamal) encryption and (n)-PEP operations.
//! This module is intended for non-standard uses cases where the individual (n)-PEP primitives are
//! needed.
//!
//! For most use cases, the [high-level](crate::core) API should be used, which provides
//! a more user-friendly and safer interface.

pub mod elgamal;
pub mod primitives;

#[cfg(feature = "python")]
pub mod py;

#[cfg(feature = "wasm")]
pub mod wasm;