-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conver to affine representation? #26
Comments
x = X/Z, y = Y/Z given we're not dealing with the point-at-infinity. Why does this come up working with Ristretto? |
I want to implement elliptic.Curve interface with ristretto via followings: func GenerateKey(curve Curve, rand io.Reader) (priv []byte, x, y *big.Int, err error) |
Yes, it is. what about from affine (x,y) to extended (X,Y,T,Z)? |
But why would you want to implement this interface? |
Could you please help me on converting extended point to a affine point (x: bigInt, y:bigInt)
The text was updated successfully, but these errors were encountered: