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 "cstruct" {>= "6.0.0"}
18 "mirage-crypto" {< "1.0.0"}
19 "alcotest" {with-test & >= "0.8.1"}
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: "https://github.com/abeaumont/ocaml-pbkdf/archive/1.2.0.tar.gz"
28 checksum: [
29 "md5=1e0e69de61b2d9d4f9843572ecc6655c"
30 "sha512=d6f7d5efd761b87dd420ddcf97c2f9d4402dcc81d65cd1f4d81039b70c4d8c1e803bbaf4251482de8de7076da9f40b48c7eb1684e31e7a316deb5036c192bd3c"
31 ]
32}