You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
360 B

  1. secp256k1-go
  2. =======
  3. golang secp256k1 library
  4. Implements cryptographic operations for the secp256k1 ECDSA curve used by Bitcoin.
  5. Installing
  6. ===
  7. GMP library headers are required to build. On Debian-based systems, the package is called `libgmp-dev`.
  8. ```
  9. sudo apt-get install libgmp-dev
  10. ```
  11. Now compiles with cgo!
  12. Test
  13. ===
  14. To run tests do
  15. ```
  16. go tests
  17. ```