this repo has no description
1opam-version: "2.0" 2homepage: "https://github.com/hannesm/ocaml-hkdf" 3dev-repo: "git+https://github.com/hannesm/ocaml-hkdf.git" 4bug-reports: "https://github.com/hannesm/ocaml-hkdf/issues" 5doc: "https://hannesm.github.io/ocaml-hkdf/doc" 6maintainer: ["Hannes Mehnert <hannes@mehnert.org>"] 7license: "BSD-2-Clause" 8 9 10build: [ 11 ["ocaml" "pkg/pkg.ml" "build" "--pinned" "%{pinned}%"] 12 ["ocaml" "pkg/pkg.ml" "build" "--pinned" "%{pinned}%" "--tests" "true"] 13 {with-test} 14 ["ocaml" "pkg/pkg.ml" "test"] {with-test} 15] 16depends: [ 17 "ocaml" {>= "4.01.0"} 18 "ocamlfind" {build} 19 "ocamlbuild" {build} 20 "topkg" {build} 21 "cstruct" {>= "1.6.0"} 22 "nocrypto" {>= "0.5.0"} 23 "alcotest" {with-test} 24] 25synopsis: "Extract-and-Expand Key Derivation Function (HKDF)" 26description: """ 27An implementation of [HKDF](https://tools.ietf.org/html/rfc5869) using 28[nocrypto](https://github.com/mirleft/ocaml-nocrypto), including test cases from 29the RFC.""" 30authors: "Hannes Mehnert <hannes@mehnert.org>" 31url { 32 src: 33 "https://github.com/hannesm/ocaml-hkdf/releases/download/1.0.2/hkdf-1.0.2.tbz" 34 checksum: [ 35 "sha256=62fe720da56b84e36f5cd682e9246eddf18cbf7902e52d7afa0f0ec8f6dcbc4a" 36 "md5=91627b3d546eea255a42faf98d82dddc" 37 ] 38} 39flags: deprecated