this repo has no description
1opam-version: "2.0"
2maintainer: [ "Romain Calascibetta <romain.calascibetta@gmail.com>" ]
3authors: [ "Romain Calascibetta <romain.calascibetta@gmail.com>" ]
4homepage: "https://github.com/mirage/eqaf"
5bug-reports: "https://github.com/mirage/eqaf/issues"
6dev-repo: "git+https://github.com/mirage/eqaf.git"
7doc: "https://mirage.github.io/eqaf/"
8license: "MIT"
9synopsis: "Constant-time equal function on string"
10description: """
11This package provides an equal function on string in constant-time to avoid timing-attack with crypto stuff.
12"""
13
14build: [ "dune" "build" "-p" name "-j" jobs ]
15
16depends: [
17 "ocaml" {>= "4.03.0"}
18 "dune"
19 "alcotest" {with-test}
20 "crowbar" {with-test}
21]
22depopts: [
23 "cstruct" {>= "4.0.0"}
24 "bigarray-compat"
25]
26url {
27 src: "https://github.com/mirage/eqaf/releases/download/v0.5/eqaf-v0.5.tbz"
28 checksum: [
29 "sha256=58ef81c110ee44669b1951df669cdc1f60ca34f0063cf0ae8b87568111af73f2"
30 "sha512=8a5761596bb8cbde8743161502900423f369d3de3b4b999a940b93d66b1830204fdb67165eff461f3eec0cdb1e169ebd6c9b80f5a8162bc12f359b606a0cbb17"
31 ]
32}