Skip to main content

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.

PyPI version and link. Read the Docs documentation status. GitHub Actions status. Coveralls test coverage summary.

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 pytest (see setup.cfg for configuration details):

python -m pip install pytest pytest-cov
python -m pytest

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
python -m 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.

Publishing

This library can be published as a package on PyPI by a package maintainer. Install the wheel package, remove any old build/distribution files, and package the source into a distribution archive:

python -m pip install wheel
rm -rf dist *.egg-info
python setup.py sdist bdist_wheel

Next, install the twine package and upload the package distribution archive to PyPI:

python -m pip install twine
python -m twine upload dist/*

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

oprf-3.0.0.tar.gz (5.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

oprf-3.0.0-py3-none-any.whl (5.9 kB view details)

Uploaded Python 3

File details

Details for the file oprf-3.0.0.tar.gz.

File metadata

  • Download URL: oprf-3.0.0.tar.gz
  • Upload date:
  • Size: 5.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for oprf-3.0.0.tar.gz
Algorithm Hash digest
SHA256 88e95896e86cbb5696ff6b0bd3655a4266d70ca2552ca33aa66b4d9b4c28c8b4
MD5 1005508f2d3cb2769ebf185cc09c11d0
BLAKE2b-256 c1f73195b09cfda4e56820adaf20296ef40a7cde9be8cbb6b86c4aeb6dd2b39b

See more details on using hashes here.

File details

Details for the file oprf-3.0.0-py3-none-any.whl.

File metadata

  • Download URL: oprf-3.0.0-py3-none-any.whl
  • Upload date:
  • Size: 5.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for oprf-3.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 c3049129b2ecf379bb49efe0c065e650e233466d1edc19e518a310bf50d2e50a
MD5 bcbfc169884dc5d7cfb8d161f8b2efbc
BLAKE2b-256 c05ff84b20df74ac0429c996f6b45b0e44128d31513fafa3b377792f87e677e1

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page