this repo has no description
1opam-version: "2.0" 2synopsis: "The scrypt Password-Based Key Derivation Function" 3description: """ 4A pure OCaml implementation of [scrypt](https://en.wikipedia.org/wiki/Scrypt) password based key derivation function, 5as defined in [The scrypt Password-Based Key Derivation Function internet draft](https://tools.ietf.org/html/draft-josefsson-scrypt-kdf-04), 6including test cases from the RFC. 7""" 8maintainer: ["Alfredo Beaumont <alfredo.beaumont@gmail.com>"] 9authors: ["Alfredo Beaumont <alfredo.beaumont@gmail.com>" "Sonia Meruelo <smeruelo@gmail.com>"] 10license: "BSD-2-Clause" 11homepage: "https://github.com/abeaumont/ocaml-scrypt-kdf" 12bug-reports: "https://github.com/abeaumont/ocaml-scrypt-kdf/issues" 13dev-repo: "git+https://github.com/abeaumont/ocaml-scrypt-kdf.git" 14doc: "https://abeaumont.github.io/ocaml-scrypt-kdf/" 15depends: [ 16 "ocaml" {>= "4.07.0"} 17 "dune" {>= "1.8.0"} 18 "cstruct" {>= "6.0.0"} 19 "mirage-crypto" {< "1.0.0"} 20 "pbkdf" {>= "0.1.0"} 21 "salsa20-core" {>= "0.1.0" & < "2.0.0"} 22 "alcotest" {with-test} 23] 24build: [ 25 [ "dune" "subst" ] {dev} 26 [ "dune" "build" "-j" jobs "-p" name "@install" ] 27 [ "dune" "runtest" "-j" jobs "-p" name ] {with-test & arch != "x86_32" & arch != "arm32"} 28] 29url { 30 src: "https://github.com/abeaumont/ocaml-scrypt-kdf/archive/1.2.0.tar.gz" 31 checksum: [ 32 "md5=f94cf5985bceb9b57efe3979a791cd81" 33 "sha512=9d4f4ba1153b6c92abc2194da93e98d7f18c539ddf405e6619f0a9336790aee80b6dabb52ffa046138bdfe8a41b2b9c4361962011b37bcb9b8ab54d509b58d68" 34 ] 35} 36x-maintenance-intent: [ "(none)" ]