this repo has no description
1opam-version: "2.0"
2maintainer: "Hannes Mehnert <hannes@mehnert.org>"
3authors: "Hannes Mehnert <hannes@mehnert.org>"
4license: "BSD-2-Clause"
5homepage: "https://github.com/hannesm/ocaml-hkdf"
6doc: "https://hannesm.github.io/ocaml-hkdf/doc"
7bug-reports: "https://github.com/hannesm/ocaml-hkdf/issues"
8depends: [
9 "ocaml" {>= "4.04.0"}
10 "dune"
11 "cstruct" {>= "3.2.0"}
12 "nocrypto" {>= "0.5.0"}
13 "alcotest" {with-test}
14]
15build: [
16 ["dune" "subst"] {dev}
17 ["dune" "build" "-p" name "-j" jobs]
18 ["dune" "runtest" "-p" name "-j" jobs] {with-test}
19]
20dev-repo: "git+https://github.com/hannesm/ocaml-hkdf.git"
21synopsis: "HMAC-based Extract-and-Expand Key Derivation Function (RFC 5869)"
22description: """
23An implementation of [HKDF](https://tools.ietf.org/html/rfc5869) using
24[nocrypto](https://github.com/mirleft/ocaml-nocrypto).
25"""
26url {
27 src:
28 "https://github.com/hannesm/ocaml-hkdf/releases/download/1.0.3/hkdf-1.0.3.tbz"
29 checksum: [
30 "sha256=f47413f1e288104e7b176cfc75fd8a8edfd047069d54268fac101118f13cc047"
31 "md5=a92cf45193a8f2f5429da0590a8e808c"
32 ]
33}
34flags: deprecated