[ANN] secp256k1-ml 0.3.2

Hi, this is my first post here, and I would like to announce the new release of the ocaml library secp256k1-ml.

This library wrap the secp256k1 EC(DSA) library into an OCaml library. At the moment only a subset of functionalities are available:

  • Context: create, clone, destroy, randomize
  • Elliptic curve: public key creation
  • ECDSA: verify, sign, recover

This library was first released by me, but Vincent Bernardoff and Yoichi Hirai helped to improve the library.

Repository: https://github.com/dakk/secp256k1-ml
Opam page: https://opam.ocaml.org/packages/secp256k1/

Do you have plans to include an OCaml implementation as well?

Not in the short term and not in this packages (which is a wrapper of libsecp). Atm there is a pure ocaml ECC implementation here: https://github.com/nickgian/ECC-OCaml