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.0.7"}
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.4.0-r1.zip"
38 checksum: [
39 "sha256=8e455ae2acac3566bbd8f6c627c626ae6038831a25cd75c3d10224c1d01dac9f"
40 "md5=a0708fffbe30eaa6c5f4e7b981c8241c"
41 ]
42}