-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnocoiner.opam
35 lines (32 loc) · 1.16 KB
/
nocoiner.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
opam-version: "2.0"
name: "nocoiner"
version: "1.0.0"
synopsis: "A Commitment Scheme library for Coin Flipping/Tossing algorithms and sort"
description: """
This project implements Commitment Schemes using the
Encrypt-then-MAC approach of authenticated encryption. Because this kind of
encryption algorithm provides both Message Confidentiality and Integrity, it fits
perfectly the Hiding and Binding properties of Commitment Schemes.
Confidentiality protects the message against passive attacks while integrity
protects it from active attacks.
"""
maintainer: "Marco Aurélio da Silva <[email protected]>"
authors: ["Marco Aurélio da Silva <[email protected]>"]
homepage: "https://github.com/marcoonroad/nocoiner"
bug-reports: "https://github.com/marcoonroad/nocoiner/issues"
dev-repo: "git+https://github.com/marcoonroad/nocoiner.git"
build: [
["dune" "build" "-p" name "-j" jobs]
]
run-test: ["dune" "runtest" "-p" name "-j" jobs]
depends: [
"ocaml" {>= "4.03.0"}
"dune" {>= "1.9"}
"cmdliner" {>= "1.0.0"}
"alcotest" {with-test}
"nocrypto" {>= "0.5.4-1"}
"scrypt-kdf" {>= "1.0.0"}
"digestif" {>= "0.7.0"}
"core" {>= "v0.9.1"}
"bisect_ppx" {>= "1.4.1"}
]