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 ["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" {>= "4.02.0"} 19 "ocamlfind" {build} 20 "ocamlbuild" {build} 21 "topkg" {build} 22 "cstruct" {>= "1.7.0" & < "6.0.1"} 23 "nocrypto" {>= "0.5.3"} 24 "pbkdf" {>= "0.1.0" & < "2.0.0"} 25 "alcotest" {with-test} 26] 27synopsis: "The scrypt Password-Based Key Derivation Function in pure OCaml" 28description: 29 "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." 30url { 31 src: "https://github.com/abeaumont/ocaml-scrypt-kdf/archive/0.2.0.tar.gz" 32 checksum: [ 33 "sha256=8c4957b0b93705e04b9f3451f76f6fa5945d685ff2b923e4ca6a1e2277a7b411" 34 "md5=cca263d2f7b25a17fa704d7c66aff7cb" 35 ] 36}