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.07.0"} 10 "dune" 11 "cstruct" {>= "3.2.0"} 12 "mirage-crypto" {< "1.0.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/v1.0.4/hkdf-v1.0.4.tbz" 29 checksum: [ 30 "sha256=b926d6da4ac45aab999735dd2bbfd1f7511316710d791afa361006b6fe36fd5b" 31 "sha512=d08e50857f7761572adc4d382975fde5808898c1d92d9e6e943a496cba8780ffabe1edf67844063b70d9727c0fe10b24391e001a3f65c978a5326ac82199cc88" 32 ] 33} 34flags: deprecated