Skip to content

Commit 4324a94

Browse files
committed
new version
1 parent cbf4af8 commit 4324a94

File tree

4 files changed

+41
-2
lines changed

4 files changed

+41
-2
lines changed

secp256k1.0.3.2/descr

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
Elliptic curve library secp256k1 wrapper for Ocaml
2+
3+
This library wrap the secp256k1 EC(DSA) library into an OCaml library. At
4+
the moment only a subset of functionalities are available:
5+
6+
- Context: create, clone, destroy, randomize
7+
- Elliptic curve: public key creation
8+
- ECDSA: verify, sign
9+
10+
11+
All exchanged data (pubkey, signature, seckey) are represented as hex
12+
strings.
13+
14+

secp256k1.0.3.2/opam

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
opam-version: "1.2"
2+
maintainer: "Davide Gessa <[email protected]>"
3+
authors: [
4+
"Davide Gessa <[email protected]>"
5+
"Vincent Bernardoff <[email protected]>"
6+
"Yoichi Hirai <[email protected]>"
7+
]
8+
homepage: "https://github.com/dakk/secp256k1-ml"
9+
bug-reports: "https://github.com/dakk/secp256k1-ml/issues"
10+
license: "MIT"
11+
dev-repo: "git+https://github.com/dakk/secp256k1-ml"
12+
build: ["jbuilder" "build" "-p" name "-j" jobs]
13+
depends: [
14+
"jbuilder" {build & >= "1.0+beta9"}
15+
"base" {build & >= "v0.9.2"}
16+
"stdio" {build & >= "v0.9.0"}
17+
"configurator" {build & >= "v0.9.1"}
18+
"hex" {test & >= "1.1.1"}
19+
"ounit" {test & >= "2.2.2"}
20+
"conf-secp256k1"
21+
"base-bigarray"
22+
]
23+

secp256k1.0.3.2/url

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
http: "https://github.com/dakk/secp256k1-ml/archive/0.3.2.zip"
2+
checksum: "727d33d4627bad7f13ef2652c152598a"

secp256k1.opam

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
opam-version: "1.2"
22
name: "secp256k1"
3-
version: "0.3.2"
3+
version: "0.4.0"
44
maintainer: "Davide Gessa <[email protected]>"
55
authors: [
66
"Davide Gessa <[email protected]>"
@@ -22,7 +22,7 @@ depends: [
2222
"stdio" {build & >= "v0.9.0"}
2323
"configurator" {build & >= "v0.9.1"}
2424
"hex" {test & >= "1.1.1"}
25-
"ounit" {test & >= "2.2.2"}
25+
"ounit" {test & >= "2.0.7"}
2626
"conf-secp256k1"
2727
"base-bigarray"
2828
]

0 commit comments

Comments
 (0)