opam-version: "2.0"
synopsis: "Password based key derivation functions (PBKDF) from PKCS#5"
description: """\
An implementation of PBKDF 1 and 2 as defined by [PKCS#5](https://tools.ietf.org/html/rfc2898) using
 [mirage-crypto](https://github.com/mirage/mirage-crypto)"""
maintainer: "Alfredo Beaumont <alfredo.beaumont@gmail.com>"
authors: [
  "Alfredo Beaumont <alfredo.beaumont@gmail.com>"
  "Sonia Meruelo <smeruelo@gmail.com>"
]
license: "BSD-2-Clause"
homepage: "https://github.com/abeaumont/ocaml-pbkdf"
doc: "https://abeaumont.github.io/ocaml-pbkdf/"
bug-reports: "https://github.com/abeaumont/ocaml-pbkdf/issues"
depends: [
  "ocaml" {>= "4.07.0"}
  "dune" {>= "1.8.0"}
  "cstruct" {>= "6.0.0"}
  "mirage-crypto" {< "1.0.0"}
  "alcotest" {with-test & >= "0.8.1"}
]
build: [
  ["dune" "subst"] {dev}
  ["dune" "build" "-j" jobs "-p" name "@install"]
  ["dune" "runtest" "-p" name "-j" jobs] {with-test}
]
dev-repo: "git+https://github.com/abeaumont/ocaml-pbkdf.git"
url {
  src: "https://github.com/abeaumont/ocaml-pbkdf/archive/1.2.0.tar.gz"
  checksum: [
    "md5=1e0e69de61b2d9d4f9843572ecc6655c"
    "sha512=d6f7d5efd761b87dd420ddcf97c2f9d4402dcc81d65cd1f4d81039b70c4d8c1e803bbaf4251482de8de7076da9f40b48c7eb1684e31e7a316deb5036c192bd3c"
  ]
}
