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
18
"""
Python integration tests for libpep.

This package contains comprehensive integration tests for the Python bindings
of libpep, covering all modules:

- test_arithmetic: Basic arithmetic operations (GroupElement, ScalarNonZero, ScalarCanBeZero)
- test_elgamal: ElGamal encryption and decryption
- test_primitives: PEP primitives (rekey, reshuffle, rsk operations)
- test_core: High-level API (Pseudonym, Attribute, session management)
- test_distributed: Distributed n-PEP systems (PEPSystem, PEPClient, key blinding)

Run all tests with:
    python -m unittest discover tests/python/ -v

Or with poetry:
    poetry run python -m unittest discover tests/python/ -v
"""