cleanup cli

This commit is contained in:
Jaremy Creechley 2024-05-29 14:00:46 +01:00
parent 142c27e2b0
commit 75403f8b22
No known key found for this signature in database
GPG Key ID: 4E66FB67B21D3300
1 changed files with 13 additions and 10 deletions

View File

@ -122,9 +122,10 @@ proc prove*(
# echo "Proof:"
# echo proof
echo "\nProof:json: "
# echo "\nProof:json: "
let g16proof: Groth16Proof = proof.toGroth16Proof()
echo pretty(%*(g16proof))
let proofStr = pretty(%*(g16proof))
writeFile(self.dir / "proof.json", proofStr)
return proof
proc verify*(
@ -134,7 +135,6 @@ proc verify*(
): bool =
## Verify a proof using a ctx
echo "inputs val: ", inputs.repr
let res = verifyCircuit(proof.unsafeAddr, inputs, self.vkp)
@ -268,14 +268,17 @@ proc run*() =
if ctx != nil:
ctx.addr.releaseCircomCompat()
var pubInputs: ptr Inputs
defer:
if pubInputs != nil:
release_inputs(pubInputs.addr)
doAssert ctx.get_pub_inputs(pubInputs.addr) == ERR_OK
if "prove" in self.cmds or "verify" in self.cmds:
let proof = prove(self, ctx)
let proof = prove(self, ctx)
let verified = verify(self, pubInputs, proof)
var pubInputs: ptr Inputs
defer:
if pubInputs != nil:
release_inputs(pubInputs.addr)
doAssert ctx.get_pub_inputs(pubInputs.addr) == ERR_OK
if "verify" in self.cmds:
let verified = verify(self, pubInputs, proof)
when isMainModule:
run()