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]
7homepage: "https://github.com/dakk/secp256k1-ml"
8bug-reports: "https://github.com/dakk/secp256k1-ml/issues"
9license: "MIT"
10dev-repo: "git+https://github.com/dakk/secp256k1-ml"
11build: ["jbuilder" "build" "-p" name "-j" jobs]
12depends: [
13 "ocaml" {< "5.0"}
14 "jbuilder" {>= "1.0+beta9"}
15 "base" {build & >= "v0.9.2"}
16 "stdio" {build & >= "v0.9.0"}
17 "configurator" {build & >= "v0.9.1"}
18 "hex" {with-test & >= "1.1.1"}
19 "ounit" {with-test & >= "2.2.2"}
20 "conf-secp256k1"
21 "base-bigarray"
22]
23synopsis: "Elliptic curve library secp256k1 wrapper for Ocaml"
24description: """
25This library wrap the secp256k1 EC(DSA) library into an OCaml library. At
26the moment only a subset of functionalities are available:
27
28- Context: create, clone, destroy, randomize
29- Elliptic curve: public key creation
30- ECDSA: verify, sign
31
32
33All exchanged data (pubkey, signature, seckey) are represented as hex
34strings."""
35url {
36 src: "https://github.com/dakk/secp256k1-ml/archive/0.2.5.zip"
37 checksum: [
38 "sha256=c13e507743a92dfaa6137cfbd82f0f2b56b417c89b1a1afcda84e64ef558759a"
39 "md5=677f73a2012e4eca4a2e7ee757137f90"
40 ]
41}