Skip to content

Small repo for implementing the 2018 EUROCRYPT paper "Simple Proofs of Sequential Work" by Cohen and Pietrzak. Also used as part of our CS244 project in Professor Kung's class at Harvard University.

License

Notifications You must be signed in to change notification settings

wfus/proof-of-sequential-work

Repository files navigation

proof-of-sequential-work

Small repo for implementing the 2018 EUROCRYPT paper "Simple Proofs of Sequential Work" by Cohen and Pietrzak. Also used as part of our CS244 project in Professor Kung's class at Harvard University.

This is currently a experimental repository.

DO NOT USE THE CURRENT VERSION OF THIS REPO IN ANY REAL WORLD PROGRAM.

I repeat

DO NOT USE THE CURRENT VERSION OF THIS REPO IN ANY REAL WORLD PROGRAM.

This is used as a proof of concept before we implement the scheme with cryptographically secure primitives, possibly in a different programming language. Also you really shouldn't be running a random persons repository that probably has crippling security vulnerabilities anyway...

Usage

Python 3.6 is REQUIRED to run this code using your computer's entropy source. This is because we use the secrets module first introduced in Python 3.6 to get better random numbers than python's old random library.

Most of the scheme is implemented in scheme.py and the main functions for the prover and the verifier are listed in posw.py that can be imported for use in other areas. You can run a small test by running python3 posw.py which should return true. The file simulates running the scheme for an honest prover and verifier.

Install the python requirements with

pip install -r requirements.txt

If using a Mac, you can use our install.sh script to install the required dependencies. Unfortunately for Ubuntu 16.04 and older distros, installing python3.6 is a bit annoying - standard repositories still only support up to python3.5.

chmod +x install.sh
./install.sh

Then, you can run a simple test with

python3 posw.py --help
usage: posw.py [-h] [-n N] [-t T]

Runs a test prover-verifier proof of sequential work assuming both parties are
honest.

optional arguments:
  -h, --help  show this help message and exit
  -n N        depth of the DAG
  -t T        number of challenges in gamma

Parameter selection is important. Try not to go over 20 for n, t can be anywhere from 0 to 2^n and it works fine.

Parameters

The parameters described in the paper (and are named in the same way in the source code) are

  • N: The time parameter which we assume is of the form 2^n-1 for an integer n
  • w: A statistical security parameter from which the random nonce is generated from
  • H: A random oracle (we used default of sha256) that maps (0, 1)* to (0, 1)^w

Acknowledgements

Many thanks to Professor Kung for his intellectually interesting discussions, as well as Marcus Comiter for all the help in the class.

Papers and Further Links

About

Small repo for implementing the 2018 EUROCRYPT paper "Simple Proofs of Sequential Work" by Cohen and Pietrzak. Also used as part of our CS244 project in Professor Kung's class at Harvard University.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •