Skip to content

Latest commit

 

History

History
14 lines (9 loc) · 662 Bytes

README.md

File metadata and controls

14 lines (9 loc) · 662 Bytes

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)