this repo has no description
1opam-version: "2.0" 2synopsis: "Elliptic curve library secp256k1 wrapper for Ocaml" 3description: """ 4This library wrap the secp256k1 EC(DSA) library into an OCaml library. At the moment only a subset of functionalities are available: 5- Context: create, clone, destroy, randomize 6- Elliptic curve: public key creation 7- ECDSA: verify, sign, recover 8 9All exchanged data (pubkey, signature, seckey) are represented as hex strings.""" 10maintainer: "Davide Gessa <gessadavide@gmail.com>" 11authors: [ 12 "Davide Gessa <gessadavide@gmail.com>" 13 "Vincent Bernardoff <vb@luminar.eu.org>" 14 "Yoichi Hirai <i@yoichihirai.com>" 15 "Anton Trunov" 16] 17license: "MIT" 18homepage: "https://github.com/dakk/secp256k1-ml" 19bug-reports: "https://github.com/dakk/secp256k1-ml/issues" 20depends: [ 21 "ocaml" {< "5.0"} 22 "dune" {>= "1.0"} 23 "base" {build & >= "v0.9.2"} 24 "stdio" {build & >= "v0.9.0"} 25 "dune-configurator" {build & >= "1.0"} 26 "hex" {with-test & >= "1.1.1"} 27 "alcotest" {with-test & >= "0.8.1"} 28 "odoc" {with-test & >= "1.3.0"} 29 "base-bigarray" 30 "conf-secp256k1" 31] 32build: ["dune" "build" "-p" name "-j" jobs] 33dev-repo: "git+https://github.com/dakk/secp256k1-ml" 34url { 35 src: "https://github.com/dakk/secp256k1-ml/archive/0.4.1.zip" 36 checksum: [ 37 "md5=64e2484cfb53a2802070eb454358f97a" 38 "sha512=fed5b52773954e4b65d7dd7e05ca0a990efcad22c602e1c79550eb206413c00f4649760c9e5b0e59ef678c8a2f404feccd28216a77acc4fa88fc1e6e99460494" 39 ] 40}