Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 1.01 KB

README.md

File metadata and controls

26 lines (20 loc) · 1.01 KB

pylookup

pylookup is a project for Python implementations of popular lookup arguments. We implemented lookup arguments below:

  1. plookup: https://eprint.iacr.org/2020/315.pdf
  2. Caulk+: https://eprint.iacr.org/2022/957.pdf
  3. baloo: https://eprint.iacr.org/2022/1565.pdf
  4. CQ: https://eprint.iacr.org/2022/1763.pdf
  5. lasso: https://eprint.iacr.org/2023/1216.pdf
  6. LogUp+GKR: https://eprint.iacr.org/2023/1284.pdf

Blog Posts

Test

Navigate to specific lookup argument folder and execute with command such as:

$ poetry run python3 test.py

Acknowledgement

  • MLE, Sumcheck, GKR implementation credits to gkr by Soowon
  • Folder common_util are modified based on Plonkathon