w3f / bls

Aggregatable BLS sigantures
65 stars 15 forks source link

Resolve the failure of `bit::tests::proofs_of_possession` #27

Closed drskalman closed 3 years ago

drskalman commented 3 years ago

I need to see what I did that I get this failure now.

   test bit::tests::proofs_of_possession ... FAILED
drskalman commented 3 years ago

zexe/arkworks has changed the interface, ProjectiveCurve::double no longer double self but it returns a new point with is equalto to 2 * self. Instead one need to call double_in_place(). doing so fix the failure.

drskalman commented 3 years ago

corresponidng commit: 5db35d3