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 ["ocaml" "pkg/pkg.ml" "build" "--pinned" "%{pinned}%"] 13 ["ocaml" "pkg/pkg.ml" "build" "--pinned" "%{pinned}%" "--tests" "true"] 14 {with-test} 15 ["ocaml" "pkg/pkg.ml" "test"] {with-test} 16] 17depends: [ 18 "ocaml" 19 "ocamlfind" {build} 20 "ocamlbuild" {build} 21 "topkg" {build} 22 "cstruct" {>= "1.7.0" & < "6.0.1"} 23 "nocrypto" {>= "0.5.0"} 24 "alcotest" {with-test} 25] 26synopsis: "Password based key derivation functions from PKCS#5, RFC 2898" 27description: 28 "An implementation of PBKDF 1 and 2 as defined by PKCS#5 (RFC 2898) in OCaml, using nocrypto." 29url { 30 src: "https://github.com/abeaumont/ocaml-pbkdf/archive/0.2.0.tar.gz" 31 checksum: [ 32 "sha256=ce2fa6e4ce3c8a7ec77fb6c95a22331137905f7d4d473cf6b307d1eb5beee7af" 33 "md5=ddb093e2c226058e2341e5251d41721c" 34 ] 35}