this repo has no description
1opam-version: "2.0"
2maintainer: "Alfredo Beaumont <alfredo.beaumont@gmail.com>"
3authors: [
4 "Alfredo Beaumont <alfredo.beaumont@gmail.com>"
5 "Sonia Meruelo <smeruelo@gmail.com>"
6]
7homepage: "https://github.com/abeaumont/ocaml-pbkdf"
8bug-reports: "https://github.com/abeaumont/ocaml-pbkdf/issues"
9license: "BSD-2-Clause"
10dev-repo: "git+https://github.com/abeaumont/ocaml-pbkdf.git"
11build: [
12 ["jbuilder" "build" "-j" jobs "-p" name "@install"]
13 ["jbuilder" "runtest" "-p" name "-j" jobs] {with-test}
14]
15depends: [
16 "ocaml" {>= "4.02.3"}
17 "jbuilder" {>= "1.0+beta17"}
18 "nocrypto" {>= "0.5.4"}
19 "alcotest" {with-test & >= "0.8.1"}
20]
21synopsis: "Password based key derivation functions from PKCS#5, RFC 2898"
22description:
23 "An implementation of PBKDF 1 and 2 as defined by PKCS#5 (RFC 2898) in OCaml, using nocrypto."
24url {
25 src: "https://github.com/abeaumont/ocaml-pbkdf/archive/0.3.0.tar.gz"
26 checksum: [
27 "sha256=0cfd12c62adc901705c11b9f17504d6cbdee96f7e424852821d2b6d9a2b37e60"
28 "md5=ab34d1027e693e855a06639c7bbb8ced"
29 ]
30}