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 5Galois/Counter Mode (GCM) of secret-key encryption. Because this AES 6encryption mode 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. GCM, so, works as an 10Authenticated Encryption where it roughly works as an encryption algorithm 11with MAC signatures on cipher data. 12""" 13maintainer: "Marco Aurélio da Silva <marcoonroad@gmail.com>" 14authors: ["Marco Aurélio da Silva <marcoonroad@gmail.com>"] 15homepage: "https://github.com/marcoonroad/nocoiner" 16bug-reports: "https://github.com/marcoonroad/nocoiner/issues" 17dev-repo: "git+https://github.com/marcoonroad/nocoiner.git" 18 19build: ["dune" "build" "-p" name "-j" jobs] 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 "digestif" {>= "0.7.0"} 30 "core" {>= "v0.9.1"} 31] 32 33url { 34 src: "https://github.com/marcoonroad/nocoiner/archive/0.0.1.tar.gz" 35 checksum: "sha256=4e568df2f9800556e33406c75f36234c927b57bf48481f17dbb070256866990b" 36}