Oblivious pseudo-random function (OPRF) protocol functionality implementations based on Curve25519 primitives.
Project description
Oblivious pseudo-random function (OPRF) protocol functionality implementations based on Curve25519 primitives, including both pure-Python and libsodium-based variants.
Purpose
This library provides data structures and methods for a basic oblivious pseudo-random function (OPRF) protocol. Thanks to the underlying oblivious library, users of this library have the option of relying either on pure Python implementations of cryptographic primitives or on wrappers for libsodium.
Package Installation and Usage
The package is available on PyPI:
python -m pip install oprf
The library can be imported in the usual ways:
import oprf from oprf import *
Examples
This library makes it possible to concisely prepare binary or string data for masking:
>>> from oprf import data, mask >>> d = data.hash('abc')
A random mask can be constructed and applied to the data. A number of distinct notations is supported for masking in order to minimize differences between the notation within a protocol definition and its implementation:
>>> m = mask() # Create random mask. >>> m.mask(d) == m(d) == m * d True >>> m(d) == d False
Mask inversion and unmasking are also supported:
>>> c = m(d) >>> m.unmask(c) == (~m)(c) == c / m == d True
Masks can also be constructed deterministically from a bytes-like object or string:
>>> m = mask.hash('123')
Because the classes data and mask are derived from bytes, all methods and other operators supported by bytes objects are supported by data and mask objects:
>>> hex = 'a665a45920422f9d417e4867efdc4fb8a04a1f3fff1fa07e998e86f7f7a27a03' >>> m = mask.fromhex(hex) >>> m.hex() 'a665a45920422f9d417e4867efdc4fb8a04a1f3fff1fa07e998e86f7f7a27a03'
In addition, Base64 conversion methods are included to support concise encoding and decoding of data and mask objects:
>>> d.from_base64(d.to_base64()) == d True >>> m.from_base64(m.to_base64()) == m True
Documentation
The documentation can be generated automatically from the source files using Sphinx:
cd docs python -m pip install -r requirements.txt sphinx-apidoc -f -E --templatedir=_templates -o _source .. ../setup.py && make html
Testing and Conventions
All unit tests are executed and their coverage is measured when using nose (see setup.cfg for configuration details):
python -m pip install nose coverage nosetests
Alternatively, all unit tests are included in the module itself and can be executed using doctest:
python oprf/oprf.py -v
Style conventions are enforced using Pylint:
python -m pip install pylint pylint oprf
Contributions
In order to contribute to the source code, open an issue or submit a pull request on the GitHub page for this library.
Versioning
The version number format for this library and the changes to the library associated with version number increments conform with Semantic Versioning 2.0.0.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file oprf-2.0.0.tar.gz
.
File metadata
- Download URL: oprf-2.0.0.tar.gz
- Upload date:
- Size: 5.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.26.0 setuptools/58.1.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.8.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e8e55639122b0b389a962543f308df7e83b6e4c6d18cea65eb95308b18661257 |
|
MD5 | 89b440494bf0002315d48482933b88e3 |
|
BLAKE2b-256 | 88f4ed8bf70d9fc058434c7f43dd57a74e4e7acdc493fa4fc0cac2e5ff2de554 |
File details
Details for the file oprf-2.0.0-py3-none-any.whl
.
File metadata
- Download URL: oprf-2.0.0-py3-none-any.whl
- Upload date:
- Size: 5.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.26.0 setuptools/58.1.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.8.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a09fbce1883e1177d4069fb326e92f471e0366e03b02a4a49171333de640049a |
|
MD5 | 0d13addb80775641ff717198f229819e |
|
BLAKE2b-256 | 5c5d56adad7bb8ab64023b8a0ab1b17d40a49e29548a844f926b49dc7f0d8225 |