gdanezis / PET-Exercises

Exercises in Privacy Enhancing Technologies (UCL Information Security MSc; Course COMPGA17)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

is_point_on_curve is not working unless you change the if statement

alexnikas opened this issue · comments

The code was:
if x == None and y == None:
return True
And should be:
if x is None and y is None:
return True