this repo has no description
1opam-version: "2.0"
2maintainer: ["Alfredo Beaumont <alfredo.beaumont@gmail.com>" "Hannes Mehnert <hannes@mehnert.org>"]
3authors: ["Alfredo Beaumont <alfredo.beaumont@gmail.com>" "Sonia Meruelo <smeruelo@gmail.com>" "Hannes Mehnert <hannes@mehnert.org>"]
4license: "BSD-2-Clause"
5homepage: "https://github.com/robur-coop/kdf"
6doc: "https://robur-coop.github.io/kdf/doc"
7bug-reports: "https://github.com/robur-coop/kdf/issues"
8depends: [
9 "ocaml" {>= "4.13.0"}
10 "dune" {>= "1.8.0"}
11 "digestif" {>= "1.2.0"}
12 "mirage-crypto" {>= "1.0.0"}
13 "alcotest" {with-test & >= "0.8.1"}
14 "ohex" {with-test & >= "0.2.0"}
15]
16build: [
17 ["dune" "subst"] {dev}
18 ["dune" "build" "-p" name "-j" jobs]
19 ["dune" "runtest" "-p" name "-j" jobs] {with-test}
20]
21dev-repo: "git+https://github.com/robur-coop/kdf.git"
22synopsis: "Key Derivation Functions: HKDF RFC 5869, PBKDF RFC 2898, SCRYPT RFC 7914"
23description: """
24A pure OCaml implementation of [scrypt](https://tools.ietf.org/html/rfc7914),
25[PBKDF 1 and 2 as defined by PKCS#5](https://tools.ietf.org/html/rfc2898),
26and [HKDF](https://tools.ietf.org/html/rfc5869).
27"""
28url {
29 src:
30 "https://github.com/robur-coop/kdf/releases/download/v1.0.0/kdf-1.0.0.tbz"
31 checksum: [
32 "sha256=d161582b0efe66d958dd6b8c9c21068e9f6454ce218377d6cf87823dec62e0ce"
33 "sha512=8c518494a7c2e030c079a22fc0d27e4dccd1b2d6edb8fcd2ee7121cdd3d56ff416a37876b6bb13b8be015922c3487536038373bfa0934a165055c1cb5dd3c2e1"
34 ]
35}
36x-commit-hash: "a6da77f39fd1b3acc6865a9a20dca567a5e1fe89"
37x-maintenance-intent: [ "(latest)" ]