PlonKathon is part of the program for [MIT IAP 2023] Modern Zero Knowledge Cryptography. Over the course of this weekend, we will get into the weeds of the PlonK protocol through a series of exercises and extensions. This repository contains a simple python implementation of PlonK adapted from py_plonk.
- Add support for custom gates. TurboPlonK introduced support for custom constraints, beyond the addition and multiplication gates supported here.
- Add zero-knowledge. The parts of PlonK that are responsible for ensuring strong privacy are left out of this implementation.
- Add support for lookups. A lookup argument allows us to prove that a certain element can be found in a public lookup table. PlonKup introduces lookup arguments to PlonK.
- Implement Merlin transcript.
Currently, this implementation uses the merlin transcript package. Learn about the Merlin transcript construction and the STROBE framework which Merlin is based upon, and then implement the transcript class
MerlinTranscript
To get started, you'll need to have a Python version >= 3.8 and poetry
installed: curl -sSL https://install.python-poetry.org | python3 -
.
Then, run poetry install
in the root of the repository. This will install all the dependencies in a virtualenv.
Then, to see the proof system in action, run poetry run python test.py
from the root of the repository. This will take you through the workflow of setup, proof generation, and verification for several example programs.
For linting and types, the repo also provides poetry run black .
and poetry run mypy .
Let
for any
The trusted setup is a preprocessing step that produces a structured reference string:
-
$x \in \mathbb{F}$ is a randomly chosen, secret evaluation point; and -
$d$ is the size of the trusted setup, corresponding to the maximum degree polynomial that it can support.
@dataclass
class Setup(object):
# ([1]₁, [x]₁, ..., [x^{d-1}]₁)
# = ( G, xG, ..., x^{d-1}G ), where G is a generator of G_2
powers_of_x: list[G1Point]
# [x]₂ = xH, where H is a generator of G_2
X2: G2Point
In this repository, we are using the pairing-friendly BN254 curve, where:
p = 21888242871839275222246405745257275088696311157297823662689037894645226208583
-
$\mathbb{G}_1$ is the curve$y^2 = x^3 + 3$ over$\mathbb{F}_p$ ; - $\mathbb{G}2$ is the twisted curve $y^2 = x^3 + 3/(9+u)$ over $\mathbb{F}{p^2}$; and
- $\mathbb{G}_T = {\mu}r \subset \mathbb{F}{p^{12}}^{\times}$.
We are using an existing setup for
The prover creates a proof of knowledge of some satisfying witness to a program.
@dataclass
class Prover:
group_order: int
setup: Setup
program: Program
pk: CommonPreprocessedInput
The prover progresses in five rounds, and produces a message at the end of each. After each round, the message is hashed into the Transcript
.
The Proof
consists of all the round messages (Message1
, Message2
, Message3
, Message4
, Message5
).
def round_1(
self,
witness: dict[Optional[str], int],
) -> Message1
@dataclass
class Message1:
# - [a(x)]₁ (commitment to left wire polynomial)
a_1: G1Point
# - [b(x)]₁ (commitment to right wire polynomial)
b_1: G1Point
# - [c(x)]₁ (commitment to output wire polynomial)
c_1: G1Point
def round_2(self) -> Message2
@dataclass
class Message2:
# [z(x)]₁ (commitment to permutation polynomial)
z_1: G1Point
def round_3(self) -> Message3
@dataclass
class Message3:
# [t_lo(x)]₁ (commitment to t_lo(X), the low chunk of the quotient polynomial t(X))
t_lo_1: G1Point
# [t_mid(x)]₁ (commitment to t_mid(X), the middle chunk of the quotient polynomial t(X))
t_mid_1: G1Point
# [t_hi(x)]₁ (commitment to t_hi(X), the high chunk of the quotient polynomial t(X))
t_hi_1: G1Point
def round_4(self) -> Message4
@dataclass
class Message4:
# Evaluation of a(X) at evaluation challenge ζ
a_eval: Scalar
# Evaluation of b(X) at evaluation challenge ζ
b_eval: Scalar
# Evaluation of c(X) at evaluation challenge ζ
c_eval: Scalar
# Evaluation of the first permutation polynomial S_σ1(X) at evaluation challenge ζ
s1_eval: Scalar
# Evaluation of the second permutation polynomial S_σ2(X) at evaluation challenge ζ
s2_eval: Scalar
# Evaluation of the shifted permutation polynomial z(X) at the shifted evaluation challenge ζω
z_shifted_eval: Scalar
def round_5(self) -> Message5
@dataclass
class Message5:
# [W_ζ(X)]₁ (commitment to the opening proof polynomial)
W_z_1: G1Point
# [W_ζω(X)]₁ (commitment to the opening proof polynomial)
W_zw_1: G1Point
Given a Setup
and a Program
, we can generate a verification key for the program:
def verification_key(self, pk: CommonPreprocessedInput) -> VerificationKey
The VerificationKey
contains:
verification key element | remark |
---|---|
commitment to multiplication selector polynomial | |
commitment to left selector polynomial | |
commitment to right selector polynomial | |
commitment to output selector polynomial | |
commitment to constants selector polynomial | |
commitment to the first permutation polynomial |
|
commitment to the second permutation polynomial |
|
commitment to the third permutation polynomial |
|
(from the |
|
an |