mirror of
https://github.com/arnaucube/go-circom-prover-verifier.git
synced 2026-02-06 19:06:43 +01:00
Fix verifier inputs field check
This commit is contained in:
@@ -25,7 +25,7 @@ func Verify(vk *types.Vk, proof *types.Proof, inputs []*big.Int) bool {
|
|||||||
vkX := new(bn256.G1).ScalarBaseMult(big.NewInt(0))
|
vkX := new(bn256.G1).ScalarBaseMult(big.NewInt(0))
|
||||||
for i := 0; i < len(inputs); i++ {
|
for i := 0; i < len(inputs); i++ {
|
||||||
// check input inside field
|
// check input inside field
|
||||||
if inputs[0].Cmp(types.R) != -1 {
|
if inputs[i].Cmp(types.R) != -1 {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
vkX = new(bn256.G1).Add(vkX, new(bn256.G1).ScalarMult(vk.IC[i+1], inputs[i]))
|
vkX = new(bn256.G1).Add(vkX, new(bn256.G1).ScalarMult(vk.IC[i+1], inputs[i]))
|
||||||
|
|||||||
Reference in New Issue
Block a user