Using publics
Public values are a small but important part of verifying ZK proofs. Often, the verifier is interested in inputs and/or outputs to a public function.
In the toy example below, the prover can show that they know the square root of a public value that is published with the proof.
You can also run this example directly in the powdr repository:
cargo run --example sqrt_with_public
You can also enable logs to know what is happening internally:
RUST_LOG=info cargo run --example sqrt_with_public
machine Square with degree: 8 {
reg pc[@pc];
reg X[<=];
reg Y[<=];
reg A;
// Expose the register value of A in the last time step
public N = A(7);
instr square X -> Y {
Y = X * X
}
function main {
A <=X= ${ std::prelude::Query::Input(0, 1) };
A <== square(A);
}
}
This example uses a small VM with jump
and a square
instructions. The
program reads the private input from the prover, squares it, and enters an
infinite loop to ensure that all the remaining rows are filled with the result of A^2
.
Since the length of our execution trace is fixed and equals 8, we can tag the
8-th row of A
(A[7]
) as the publicly exposed number.
Let's run all steps needed to generate and verify a proof that 32 = 9:
- Setup step:
powdr setup 8 --backend halo2 --field bn254
- Witness generation:
powdr pil test_data/asm/sqrt_with_public.asm --field bn254 -i 3
- Verification Key generation:
powdr verification-key test_data/asm/sqrt_with_public.asm --field bn254 --backend halo2 --params params.bin
- Proof generation:
powdr prove test_data/asm/sqrt_with_public.asm --field bn254 --backend halo2 --params params.bin --vkey vkey.bin
- Proof verification:
powdr verify test_data/asm/sqrt_with_public.asm --field bn254 --backend halo2 --params params.bin --vkey vkey.bin --proof sqrt_with_public_proof.bin --publics 9