You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
431 B

  1. # go-snark-study /externalVerif
  2. Utilities to verify zkSNARK proofs generated by other tools.
  3. ## Verify Proof generated from [snarkjs](https://github.com/iden3/snarkjs)
  4. Is possible with `go-snark-study` to verify proofs generated by `snarkjs`
  5. Example:
  6. ```go
  7. verified, err := VerifyFromCircom("circom-test/verification_key.json", "circom-test/proof.json", "circom-test/public.json")
  8. assert.Nil(t, err)
  9. assert.True(t, verified)
  10. ```