this repo has no description
1opam-version: "2.0"
2maintainer: "Hannes Mehnert <hannes@mehnert.org>"
3authors: "Hannes Mehnert <hannes@mehnert.org>"
4homepage: "https://github.com/hannesm/ocaml-hkdf"
5bug-reports: "https://github.com/hannesm/ocaml-hkdf/issues"
6license: "BSD-2-Clause"
7dev-repo: "git+https://github.com/hannesm/ocaml-hkdf.git"
8build: [
9 ["./configure" "--prefix" prefix]
10 [make]
11 ["./configure" "--%{alcotest:enable}%-tests"] {with-test}
12 [make "test"] {with-test}
13]
14install: [make "install"]
15remove: ["ocamlfind" "remove" "hkdf"]
16depends: [
17 "ocaml" {>= "4.01.0" & < "5.0.0"}
18 "ocamlfind"
19 "cstruct" {>= "1.6.0"}
20 "nocrypto" {>= "0.5.0"}
21 "alcotest" {with-test}
22 "ocamlbuild" {build}
23]
24synopsis:
25 "HMAC-based Extract-and-Expand Key Derivation Function (HKDF), RFC5869"
26description:
27 "An implementation of HKDF, including test cases from RFC 5869, in OCaml. This is used in various protocols, including IKEv2, PANA, EAP-AKA."
28flags: [ light-uninstall deprecated ]
29url {
30 src: "https://github.com/hannesm/ocaml-hkdf/archive/1.0.0.tar.gz"
31 checksum: [
32 "sha256=ef3265c5bea72b93fbe990493015bbdc38822156ecc88b6205be306c58385ae5"
33 "md5=c6012ebf7bb23fb8155d90a01e3679e2"
34 ]
35}