Proving System: Plonky3
Last updated
Last updated
is a batteries-included framework for building succinct proof systems. It is a collection of Rust crates providing a very small set of core traits around which various cryptographic primitives and examples are built.
Plonky3 consists of the following functional components, listed in a linearization of their dependency ordering:
A collection of simple utility functions. This is located in the util
subdirectory.
A feature-gated wrapper around parts of . This is located in the maybe-rayon
subdirectory.
A abstraction with various implementations and associated algorithms. This is located in the field
subdirectory.
A collection of utilities for testing field implementations. This is located in the field-testing
subdirectory.
A abstraction with various implementations and associated algorithms. This is located in the matrix
subdirectory.
A collection of -related traits and implementations, including a two-row matrix view and affine functions over columns in a pair (“virtual columns”). This is located in the air
subdirectory.
A framework for symmetric crypto primitives, including related traits and implementations, a padding-free, overwrite-mode , a hasher trait, a serializing hasher, and cryptographic related traits. This is located in the symmetric
subdirectory.
An implementation of the Baby bear field (i.e., the of size 2^31 - 2^27 + 1) and its quartic and quintic . This is located in the baby-bear
subdirectory.
An implementation of the Goldilocks field (i.e., the finite field of size 2^64 - 2^32 + 1) and its quadratic extension field. This is located in the goldilocks
subdirectory.
An implementation of the Mersenne-31 field (i.e., the finite field of size 2^31 - 1) and some of its field extensions, as well as implementations for Mersenne-31. This is located in the mersenne-31
subdirectory.
A permutation and hash function implementation. This is located in the keccak
subdirectory.
A hash function implementation. This is located in the blake3
subdirectory.
A library of -related traits and implementations. This is located in the dft
subdirectory.
A collection of traits. This is located in the code
subdirectory.
A collection of coset low degree extension related traits and implementations. These are used to take a polynomial, represented as its 2^k evaluations over the multiplicative subgroup of a finite field generated by a , and compute the evaluations of the polynomial over a multiplicative-group of a primitive 2^(k+added_bits)-th root of unity. This is located in the lde
subdirectory.
An implementation of . This is located in the reed-solomon
subdirectory.
A collection of traits and implementations for generating challenges based on an ’s transcript. This is located in the challenger
subdirectory.
A collection of traits. This is located in the commit
subdirectory.
A collection of (MDS) permutation related traits and implementations. (An MDS permutation is an MDS code which is also a permutation.) This is located in the mds
subdirectory.
A permutation implementation. This is located in the poseidon
subdirectory.
A permutation implementation and related traits and implementations. This is located in the poseidon2
subdirectory.
A permutation implementation. This is located in the rescue
subdirectory.
A binary implementation and a vector commitment scheme backed by binary Merkle trees. This is located in the merkle-tree
subdirectory.
An implementation of the Spielman-based code described in the . This is located in the brakedown
subdirectory.
A couple of functions to help with , specifically . This is located in the interpolation
subdirectory.
A polynomial commitment scheme using degree 2 tensor codes, based on . This is located in the tensor-pcs
subdirectory.
An implementation of the -31 permutation. This is located in the monolith
subdirectory.
An implementation of . This is located in the fri
subdirectory.
A minimal univariate framework. This is located in the uni-stark
subdirectory.
A minimal multivariate STARK framework. This is located in the multi-stark
subdirectory.
An AIR for the Keccak-f permutation. This is located in the keccak-air
subdirectory. This is provided as an example.
A common misconception about Plonky3 is that Plonky3 provides a reusable STARK framework. This is not really the case, because the univariate STARK framework isn't general enough to work for a wide enough variety of commercially relevant use cases. Making it general enough for that is a hard problem, due in part to the limitations of abstraction capabilities in Rust. This is the reason why Valida, for example, doesn't leverage the univariate STARK framework in Plonky3, but instead contains its own implementation of univariate STARKs.
Valida leverages Plonky3 for some core bits of Valida's proving system, including key abstractions such as Plonky3's AIR builder, and Plonky3's FRI polynomial commitment scheme.