Fix verifier inputs field check

This commit is contained in:
arnaucube
2020-04-22 18:24:05 +02:00
parent 37e5995f80
commit bbcbba3113

View File

@@ -25,7 +25,7 @@ func Verify(vk *types.Vk, proof *types.Proof, inputs []*big.Int) bool {
vkX := new(bn256.G1).ScalarBaseMult(big.NewInt(0))
for i := 0; i < len(inputs); i++ {
// check input inside field
if inputs[0].Cmp(types.R) != -1 {
if inputs[i].Cmp(types.R) != -1 {
return false
}
vkX = new(bn256.G1).Add(vkX, new(bn256.G1).ScalarMult(vk.IC[i+1], inputs[i]))