Post
Topic
Board Development & Technical Discussion
Merits 5 from 2 users
Re: Elliptic Curve Point Addition Question
by
NotATether
on 10/10/2021, 10:27:27 UTC
⭐ Merited by Welsh (4) ,n0nce (1)
1. Is it possible to know when the point addition process has gone outside of the field?

Implement a check before you do the modulus (I assume you made your own Point class) looking something like this:

Quote
x = # x point calculation
y = # y point calculation

if p.x > p_order: