proof for G1 multiplicaton #6
-
Hey, I've created an example of a proof over The multiplication is based on internal arkworks implementation. I've just ported it, so I can use it on G1 elements: https://github.com/mskrzypkows/arkworks_non_native_g1_multiplication/blob/main/src/non_native_affine_field_var.rs#L60 The proof is not verified even though the constraint is met (result x coordinate is equal to native one). |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I noticed that |
Beta Was this translation helpful? Give feedback.
Solved the issue, one wrong thing was that I used
if
statements in the proof, another was that I had an inversion of a zero value (even though the value wasn't chosen inselect
for further processing).