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