Skip to main content

Implementation of symmetric order-preserving encryption scheme

Project description

This is an implementation of Boldyreva symmetric order-preserving encryption scheme (http://www.cc.gatech.edu/~aboldyre/papers/bclo.pdf).

Quick example

from pyope.ope import OPE
cipher = OPE('key goes here')
assert cipher.encrypt(1000) < cipher.encrypt(2000) < cipher.encrypt(3000)
assert cipher.decrypt(cipher.encrypt(1337)) == 1337

Running tests

$ py.test tests/

TODO

  • More tests

  • Nice README

  • Get rid of numpy dependency (rewrite hypergeometric sampling code?)

  • Optimize speed

  • PyPi package

  • Security guarantees

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

pyope-0.0.1.tar.gz (3.6 kB view hashes)

Uploaded Source

Supported by

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