mirror of
https://github.com/logos-storage/nim-groth16.git
synced 2026-01-07 08:03:07 +00:00
12 lines
333 B
Nim
12 lines
333 B
Nim
import pkg/groth16
|
|
|
|
import ../tests/test_proof
|
|
import ../src/export_json
|
|
|
|
let zkey_fname : string = "./build/product.zkey"
|
|
let wtns_fname : string = "./build/product.wtns"
|
|
let proof = testProveAndVerify( zkey_fname, wtns_fname)
|
|
|
|
exportPublicIO( "./build/nim_public.json" , proof )
|
|
exportProof( "./build/nim_proof.json" , proof )
|