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 [ 13 "ocaml" 14 "pkg/build.ml" 15 "native=%{ocaml:native}%" 16 "native-dynlink=%{ocaml:native-dynlink}%" 17 "alcotest=false" 18 ] 19 [ 20 "ocaml" 21 "pkg/build.ml" 22 "native=%{ocaml:native}%" 23 "native-dynlink=%{ocaml:native-dynlink}%" 24 "alcotest=true" 25 ] {with-test} 26 [ 27 "sh" 28 "-exc" 29 "if test -f ./pbkdf_tests.native; then ./pbkdf_tests.native -v; else ./pbkdf_tests.byte -v; fi" 30 ] {with-test} 31] 32depends: [ 33 "ocaml" 34 "ocamlfind" {build} 35 "cstruct" {>= "1.7.0" & < "6.0.1"} 36 "nocrypto" {>= "0.5.0"} 37 "alcotest" {with-test} 38 "ocamlbuild" {build} 39] 40synopsis: "Password based key derivation functions from PKCS#5, RFC 2898" 41description: 42 "An implementation of PBKDF 1 and 2 as defined by PKCS#5 (RFC 2898) in OCaml, using nocrypto." 43url { 44 src: "https://github.com/abeaumont/ocaml-pbkdf/archive/0.1.0.tar.gz" 45 checksum: [ 46 "sha256=bdf60a297ad9a4171537411afd4b3f4d269cb22cbbf614a4c9cbd52ed8b5bc56" 47 "md5=a59b1ec460f25209ea5259ded6a18fbe" 48 ] 49}