this repo has no description
1opam-version: "2.0" 2synopsis: "Password based key derivation functions (PBKDF) from PKCS#5" 3description: """ 4An implementation of PBKDF 1 and 2 as defined by [PKCS#5](https://tools.ietf.org/html/rfc2898) using 5 [mirage-crypto](https://github.com/mirage/mirage-crypto) 6""" 7maintainer: ["Alfredo Beaumont <alfredo.beaumont@gmail.com>"] 8authors: ["Alfredo Beaumont <alfredo.beaumont@gmail.com>" "Sonia Meruelo <smeruelo@gmail.com>"] 9license: "BSD-2-Clause" 10homepage: "https://github.com/abeaumont/ocaml-pbkdf" 11bug-reports: "https://github.com/abeaumont/ocaml-pbkdf/issues" 12dev-repo: "git+https://github.com/abeaumont/ocaml-pbkdf.git" 13doc: "https://abeaumont.github.io/ocaml-pbkdf/" 14depends: [ 15 "ocaml" {>= "4.07.0"} 16 "dune" {>= "1.8.0"} 17 "mirage-crypto" {< "1.0.0"} 18 "alcotest" {with-test & >= "0.8.1"} 19 "cstruct" {< "6.1.0"} 20] 21build: [ 22 [ "dune" "subst" ] {dev} 23 [ "dune" "build" "-j" jobs "-p" name "@install" ] 24 [ "dune" "runtest" "-p" name "-j" jobs ] {with-test} 25] 26url { 27 src: 28 "https://github.com/abeaumont/ocaml-pbkdf/releases/download/1.1.0/pbkdf-1.1.0.tbz" 29 checksum: [ 30 "sha256=e53ed1bd9abf490c858a341c10fb548bc9ad50d4479acdf95a9358a73d042264" 31 "sha512=7c31f5470b9028a5f0b3baf670494f26c632af0449e59911efbe126d71e69fe8ebd73522f4fc96761cd71b67125579a5bbd75762f8753f9fb8c746f98bbb0aa5" 32 ] 33}