this repo has no description
1opam-version: "2.0" 2homepage: "https://github.com/abeaumont/ocaml-scrypt-kdf" 3dev-repo: "git+https://github.com/abeaumont/ocaml-scrypt-kdf.git" 4bug-reports: "https://github.com/abeaumont/ocaml-scrypt-kdf/issues" 5authors: ["Alfredo Beaumont <alfredo.beaumont@gmail.com>" "Sonia Meruelo <smeruelo@gmail.com>"] 6maintainer: ["Alfredo Beaumont <alfredo.beaumont@gmail.com>"] 7license: "BSD-2-Clause" 8 9build: [ 10 ["ocaml" "pkg/pkg.ml" "build" "--pinned" "%{pinned}%"] 11 ["ocaml" "pkg/pkg.ml" "build" "--pinned" "%{pinned}%" "--tests" "true"] 12 {with-test} 13 ["ocaml" "pkg/pkg.ml" "test"] {with-test} 14] 15depends: [ 16 "ocaml" {>= "4.02.0"} 17 "ocamlfind" {build} 18 "ocamlbuild" {build} 19 "topkg" {build} 20 "cstruct" {>= "1.7.0" & < "6.0.1"} 21 "nocrypto" {>= "0.5.3"} 22 "pbkdf" {>= "0.1.0" & < "2.0.0"} 23 "salsa20-core" {>= "0.1.0" & < "2.0.0"} 24 "alcotest" {with-test} 25] 26synopsis: "Scrypt Password-Based Key Derivation Function" 27description: 28 "A pure OCaml implementation of [scrypt](https://en.wikipedia.org/wiki/Scrypt) password based key derivation function, as defined in [The scrypt Password-Based Key Derivation Function internet draft](https://tools.ietf.org/html/draft-josefsson-scrypt-kdf-04), including test cases from the RFC." 29url { 30 src: "https://github.com/abeaumont/ocaml-scrypt-kdf/archive/0.4.0.tar.gz" 31 checksum: [ 32 "sha256=c4ffb9ab710448ebdd890ac095aca9f1b6c4528a52e129dfe991449a9ac4a850" 33 "md5=0665c7a2bf92a23ad960922b0ce04a3c" 34 ] 35}