-
Notifications
You must be signed in to change notification settings - Fork 10
/
secp256k1.opam
42 lines (38 loc) · 1.17 KB
/
secp256k1.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
opam-version: "2.0"
name: "secp256k1"
synopsis: "Elliptic curve library secp256k1 wrapper for Ocaml"
description: """
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
All exchanged data (pubkey, signature, seckey) are represented as hex strings.
"""
version: "0.4.4"
maintainer: "Davide Gessa <[email protected]>"
authors: [
"Davide Gessa <[email protected]>"
"Vincent Bernardoff <[email protected]>"
"Yoichi Hirai <[email protected]>"
"Anton Trunov"
]
homepage: "https://github.com/dakk/secp256k1-ml"
bug-reports: "https://github.com/dakk/secp256k1-ml/issues"
license: "MIT"
dev-repo: "git+https://github.com/dakk/secp256k1-ml"
build: [
["dune" "build" "-p" name "-j" jobs]
]
depends: [
"ocaml"
"dune" {>= "1.0"}
"base" {build & >= "v0.12.0"}
"stdio" {build & >= "v0.9.0"}
"dune-configurator" {build & >= "1.0"}
"hex" {with-test & >= "1.1.1"}
"alcotest" {with-test & >= "0.8.1"}
"odoc" {with-test & >= "1.3.0"}
"base-bigarray"
"conf-secp256k1"
]
depexts: []