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 "digestif" {>= "1.2"} 19 "alcotest" {with-test & >= "0.8.1"} 20 "ohex" {with-test} 21] 22build: [ 23 [ "dune" "subst" ] {dev} 24 [ "dune" "build" "-j" jobs "-p" name "@install" ] 25 [ "dune" "runtest" "-p" name "-j" jobs ] {with-test} 26] 27url { 28 src: 29 "https://github.com/abeaumont/ocaml-pbkdf/archive/refs/tags/2.0.0.tar.gz" 30 checksum: [ 31 "md5=44fe12700b5f5e3dd9ea7457188b3674" 32 "sha512=7520375abe90627aa7aa653083c1914ac79a4c7a44099a1fd77efbce213a64910f2110c42a25883c48b355073060b0afb70222b8666bc33fcca2c913a247c782" 33 ] 34} 35x-maintenance-intent: [ "(none)" ]