this repo has no description
1opam-version: "2.0"
2synopsis: "A Commitment Scheme library for Coin Flipping/Tossing algorithms and sort"
3description: """
4This project implements Commitment Schemes using the
5Encrypt-then-MAC approach of authenticated encryption. Because this kind of
6encryption algorithm provides both Message Confidentiality and Integrity, it fits
7perfectly the Hiding and Binding properties of Commitment Schemes.
8Confidentiality protects the message against passive attacks while integrity
9protects it from active attacks.
10"""
11maintainer: "Marco Aurélio da Silva <marcoonroad@gmail.com>"
12authors: ["Marco Aurélio da Silva <marcoonroad@gmail.com>"]
13homepage: "https://github.com/marcoonroad/nocoiner"
14bug-reports: "https://github.com/marcoonroad/nocoiner/issues"
15dev-repo: "git+https://github.com/marcoonroad/nocoiner.git"
16
17build: [
18 ["dune" "build" "-p" name "-j" jobs]
19]
20
21run-test: ["dune" "runtest" "-p" name "-j" jobs]
22
23depends: [
24 "ocaml" {>= "4.03.0"}
25 "dune" {>= "1.9"}
26 "cmdliner" {>= "1.0.0"}
27 "alcotest" {with-test}
28 "nocrypto" {>= "0.5.4-1"}
29 "scrypt-kdf" {>= "1.0.0"}
30 "digestif" {>= "0.7.0"}
31 "core" {>= "v0.9.1"}
32]
33
34url {
35 src: "https://github.com/marcoonroad/nocoiner/archive/1.0.0.tar.gz"
36 checksum: "sha256=3ad7aacefbb012544e43003bed7086cea77cd124ef5262485bc2fb33c5063b45"
37}