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-scrypt-kdf" 8bug-reports: "https://github.com/abeaumont/ocaml-scrypt-kdf/issues" 9license: "BSD-2-Clause" 10dev-repo: "git+https://github.com/abeaumont/ocaml-scrypt-kdf.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 ["sh" "-exc" "./run_tests.sh"] {with-test} 27] 28depends: [ 29 "ocaml" {>= "4.02.0"} 30 "ocamlfind" {build} 31 "cstruct" {>= "1.7.0" & < "6.0.1"} 32 "cstruct" {with-test & < "3.2.0"} 33 "nocrypto" {>= "0.5.0"} 34 "pbkdf" {>= "0.1.0" & < "2.0.0"} 35 "alcotest" {with-test} 36 "ocamlbuild" {build} 37] 38synopsis: "The scrypt Password-Based Key Derivation Function in pure OCaml" 39description: 40 "A pure OCaml implementation of scrypt password based key derivation function, as defined in The scrypt Password-Based Key Derivation Function internet draft, including test cases from the RFC. It also includes a pure OCaml implementation of Salsa20 Core functions, both Salsa20/20 Core and the reduced Salsa20/8 Core (required by scrypt) and Salsa20/12 Core functions, including test cases from the spec." 41url { 42 src: "https://github.com/abeaumont/ocaml-scrypt-kdf/archive/0.1.0.tar.gz" 43 checksum: [ 44 "sha256=207a3b5a1860e017e8d9521a5a1f619e00576e69f2dd6ea7d702db7c888d7b5e" 45 "md5=dfb4a5028fa8bd5735a65a994ccad911" 46 ] 47}