mirror of
https://github.com/logos-storage/nim-groth16.git
synced 2026-05-19 17:19:25 +00:00
16 lines
275 B
Nim
16 lines
275 B
Nim
|
|
#
|
|
# Groth16 prover
|
|
#
|
|
# WARNING!
|
|
# the points H in `.zkey` are *NOT* what normal people would think they are
|
|
# See <https://geometry.xyz/notebook/the-hidden-little-secret-in-snarkjs>
|
|
#
|
|
|
|
import groth16/prover/types
|
|
import groth16/prover/groth16
|
|
|
|
export types
|
|
export groth16
|
|
|