-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathscrypt-kdf.opam
28 lines (28 loc) · 1.12 KB
/
scrypt-kdf.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
opam-version: "2.0"
synopsis: "The scrypt Password-Based Key Derivation Function"
description: """
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.
"""
maintainer: ["Alfredo Beaumont <[email protected]>"]
authors: ["Alfredo Beaumont <[email protected]>" "Sonia Meruelo <[email protected]>"]
license: "BSD-2-Clause"
homepage: "https://github.com/abeaumont/ocaml-scrypt-kdf"
bug-reports: "https://github.com/abeaumont/ocaml-scrypt-kdf/issues"
dev-repo: "git+https://github.com/abeaumont/ocaml-scrypt-kdf.git"
doc: "https://abeaumont.github.io/ocaml-scrypt-kdf/"
depends: [
"ocaml" {>= "4.07.0"}
"dune" {>= "1.8.0"}
"cstruct" {>= "6.0.0"}
"mirage-crypto"
"pbkdf" {>= "0.1.0"}
"salsa20-core" {>= "0.1.0"}
"alcotest" {with-test}
]
build: [
[ "dune" "subst" ] {dev}
[ "dune" "build" "-j" jobs "-p" name "@install" ]
[ "dune" "runtest" "-j" jobs "-p" name ] {with-test}
]