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
16
17
//! Python bindings for cryptographic factors and secrets.

pub mod contexts;
pub mod secrets;
pub mod types;

pub use contexts::{
    PyAttributeRekeyInfo, PyEncryptionContext, PyPseudonymizationDomain, PyPseudonymizationInfo,
    PyTranscryptionInfo,
};
pub use secrets::{
    py_make_attribute_rekey_factor, py_make_pseudonym_rekey_factor,
    py_make_pseudonymisation_factor, PyEncryptionSecret, PyPseudonymizationSecret,
};
pub use types::{
    PyAttributeRekeyFactor, PyPseudonymRekeyFactor, PyRerandomizeFactor, PyReshuffleFactor,
};