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 [nocrypto](https://github.com/mirleft/ocaml-nocrypto) 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.02.3"} 16 "dune" {>= "1.8"} 17 "nocrypto" {>= "0.5.4"} 18 "alcotest" {with-test & >= "0.8.1"} 19] 20build: [ 21 [ "dune" "subst" ] {dev} 22 [ "dune" "build" "-j" jobs "-p" name "@install" ] 23 [ "dune" "runtest" "-p" name "-j" jobs ] {with-test} 24] 25url { 26 src: 27 "https://github.com/abeaumont/ocaml-pbkdf/releases/download/1.0.0/pbkdf-1.0.0.tbz" 28 checksum: [ 29 "sha256=6e858fee2759a80b8284cd828c34b5e44324de820854aade31d5564276227f58" 30 "sha512=ad04dd5409334d453abfbe3dc0be0dc57e60185838f7935e6d501b4a58b9c326098c49b9a7176b76b7ba54557bb6d697fa81627e1ccc32aaa2a35fe50aa3df06" 31 ] 32}