An arithmetic circuit is a low-level representation of a program that consists of gates computing arithmetic operations of addition and multiplication, with wires connecting the gates.
This form allows us to express arbitrarily complex programs with a set of private inputs and public inputs whose execution can be publicly verified without revealing the private inputs. This construction relies on recent advances in zero-knowledge proving systems:
This library presents a low-level interface for building zkSNARK proving systems from higher-level compilers. This system depends on the following cryptographic dependenices.
- pairing - Optimised bilinear pairings over elliptic curves
- galois-field - Finite field arithmetic
- galois-fft - Finite field polynomial arithmetic based on fast Fourier transforms
- elliptic-curve - Elliptic curve operations
- bulletproofs - Bulletproofs proof system
- arithmoi - Number theory operations
- semirings - Algebraic semirings
- poly - Efficient polynomial arithmetic
This library can build proof systems polymorphically over a variety of pairing friendly curves. By default we use the BN254 with an efficient implementation of the optimal Ate pairing.
The Barreto-Naehrig (BN) family of curves achieve high security and efficiency
with pairings due to an optimum embedding degree and high 2-adicity. We have
implemented the optimal Ate pairing over the BN254 curve we define
$q = 36t^4 + 36t^3 + 24t^2 + 6t + 1$ $r = 36t^4 + 36t^3 + 18t^2 + 6t + 1$ $t = 4965661367192848881$
The tower of finite fields we work with is defined as:
$\mathbb{F}_{q^2} = \mathbb{F}_q[u]/u^2 + 1$ - $\mathbb{F}{q^6} = \mathbb{F}{q^2}[v]/v^3 - (9 + u)$
- $\mathbb{F}{q^{12}} = \mathbb{F}{q^6}[w]/w^2 - v$
An arithmetic circuit over a finite field is a directed acyclic graph with gates as vertices and wires and edges. It consists of a list of multiplication gates together with a set of linear consistency equations relating the inputs and outputs of the gates.
Let
Let
QAPs are encodings of arithmetic circuits that allow the prover to construct a
proof of knowledge of a valid assignment
A quadratic arithmetic program (QAP)
and a target polynomial
In this setting, an assignment
Logical circuits can be written in terms of the addition, multiplication and negation operations.
$\text{AND}(a,b) = ab$ $\text{NOT}(a) = 1 - a$ $\text{NAND}(a,b) = 1 - ab$ $\text{NOR}(a,b) = 1 - (1 - a)(1 - b)$ $\text{XOR}(a,b) = (a+b) - 2ab$
Any arithmetic circuit can be built using a domain specific language to construct circuits that lives inside Lang.hs.
type ExprM f a = State (ArithCircuit f, Int) a
execCircuitBuilder :: ExprM f a -> ArithCircuit f
-- | Binary arithmetic operations
add, sub, mul :: Expr Wire f f -> Expr Wire f f -> Expr Wire f f
-- | Binary logic operations
-- Have to use underscore or similar to avoid shadowing @and@ and @or@
-- from Prelude/Protolude.
and_, or_, xor_ :: Expr Wire f Bool -> Expr Wire f Bool -> Expr Wire f Bool
-- | Negate expression
not_ :: Expr Wire f Bool -> Expr Wire f Bool
-- | Compare two expressions
eq :: Expr Wire f f -> Expr Wire f f -> Expr Wire f Bool
-- | Convert wire to expression
deref :: Wire -> Expr Wire f f
-- | Return compilation of expression into an intermediate wire
e :: Num f => Expr Wire f f -> ExprM f Wire
-- | Conditional statement on expressions
cond :: Expr Wire f Bool -> Expr Wire f ty -> Expr Wire f ty -> Expr Wire f ty
-- | Return compilation of expression into an output wire
ret :: Num f => Expr Wire f f -> ExprM f Wire
The following program represents the image of the arithmetic circuit above.
program :: ArithCircuit Fr
program = execCircuitBuilder (do
i0 <- fmap deref input
i1 <- fmap deref input
i2 <- fmap deref input
let r0 = mul i0 i1
r1 = mul r0 (add i0 i2)
ret r1)
The output of an arithmetic circuit can be converted to a DOT graph and save it as SVG.
dotOutput :: Text
dotOutput = arithCircuitToDot (execCircuitBuilder program)
We'll keep taking the program constructed with our DSL as example and will
use the library pairing that
provides a field of points of the BN254 curve and precomputes primitive roots of
unity for binary powers that divide
import Protolude
import qualified Data.Map as Map
import Data.Pairing.BN254 (Fr, getRootOfUnity)
import Circuit.Arithmetic
import Circuit.Expr
import Circuit.Lang
import Fresh (evalFresh, fresh)
import QAP
program :: ArithCircuit Fr
program = execCircuitBuilder (do
i0 <- fmap deref input
i1 <- fmap deref input
i2 <- fmap deref input
let r0 = mul i0 i1
r1 = mul r0 (add i0 i2)
ret r1)
We need to generate the roots of the circuit to construct polynomials
We also need to give values to the three input wires to this arithmetic circuit.
roots :: [[Fr]]
roots = evalFresh (generateRoots (fmap (fromIntegral . (+ 1)) fresh) program)
qap :: QAP Fr
qap = arithCircuitToQAPFFT getRootOfUnity roots program
inputs :: Map.Map Int Fr
inputs = Map.fromList [(0, 7), (1, 5), (2, 4)]
A prover can now generate a valid assignment.
assignment :: QapSet Fr
assignment = generateAssignment program inputs
The verifier can check the divisibility property of
main :: IO ()
main = do
if verifyAssignment qap assignment
then putText "Valid assignment"
else putText "Invalid assignment"
See Example.hs.
This is experimental code meant for research-grade projects only. Please do not use this code in production until it has matured significantly.
Copyright (c) 2017-2020 Adjoint Inc.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
OR OTHER DEALINGS IN THE SOFTWARE.