Skip to content

Latest commit

 

History

History

ec

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Elliptic curve

License: MIT

This package contains Go (only) implementation of elliptic curve with equation: y^2 =x^3 + ax + b. It also implements the standard Go elliptic.Curve interface.

The SECP256K1() function returns curve instance with parameters from SEC 2: Recommended Elliptic Curve Domain Parameters.

In the tests you can find the comparison of this implementation and popular Ethereum implementation.

More about (Wiki)