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" 5authors: ["Hannes Mehnert <hannes@mehnert.org>"] 6maintainer: ["Hannes Mehnert <hannes@mehnert.org>"] 7license: "BSD-2-Clause" 8 9build: [ 10 [ 11 "ocaml" 12 "pkg/build.ml" 13 "native=%{ocaml:native}%" 14 "native-dynlink=%{ocaml:native-dynlink}%" 15 "alcotest=false" 16 ] 17 [ 18 "ocaml" 19 "pkg/build.ml" 20 "native=%{ocaml:native}%" 21 "native-dynlink=%{ocaml:native-dynlink}%" 22 "alcotest=true" 23 ] {with-test} 24 [ 25 "sh" 26 "-exc" 27 "if test -f ./rfctests.native; then ./rfctests.native; else ./rfctests.byte; fi" 28 ] {with-test} 29] 30depends: [ 31 "ocaml" {>= "4.01.0"} 32 "ocamlfind" {build} 33 "cstruct" {>= "1.6.0"} 34 "nocrypto" {>= "0.5.0"} 35 "alcotest" {with-test} 36 "ocamlbuild" {build} 37] 38synopsis: 39 "HMAC-based Extract-and-Expand Key Derivation Function (HKDF), RFC5869" 40description: 41 "An implementation of HKDF, including test cases from RFC 5869, in OCaml. This is used in various protocols, including IKEv2, PANA, EAP-AKA." 42url { 43 src: "https://github.com/hannesm/ocaml-hkdf/archive/1.0.1.tar.gz" 44 checksum: [ 45 "sha256=e1b1151170f5b84b6186f519f5b0f51bdb68880c554deb64713281d8bf3b999d" 46 "md5=7974bdf65c1e0897fd0485f34bcc80ec" 47 ] 48} 49flags: deprecated