upstream: github.com/robur-coop/kdf
1(lang dune 3.21)
2(using mdx 0.4)
3(name nox-kdf)
4(source (tangled gazagnaire.org/kdf))
5(license BSD-2-Clause)
6(authors
7 "Alfredo Beaumont <alfredo.beaumont@gmail.com>"
8 "Sonia Meruelo <smeruelo@gmail.com>"
9 "Hannes Mehnert <hannes@mehnert.org>")
10(maintainers
11 "Alfredo Beaumont <alfredo.beaumont@gmail.com>"
12 "Hannes Mehnert <hannes@mehnert.org>")
13(homepage "https://tangled.org/gazagnaire.org/kdf")
14(documentation "https://tangled.org/gazagnaire.org/kdf")
15(bug_reports "https://tangled.org/gazagnaire.org/kdf/issues")
16
17(generate_opam_files true)
18
19(package
20 (name nox-kdf)
21 (synopsis "Key Derivation Functions: HKDF RFC 5869, PBKDF RFC 2898, SCRYPT RFC 7914")
22 (description "A pure OCaml implementation of scrypt (RFC 7914), PBKDF 1 and 2 as defined by PKCS#5 (RFC 2898), and HKDF (RFC 5869).")
23 (tags (org:blacksun crypto))
24 (depends
25 (ocaml (>= 4.13.0))
26 (dune (>= 1.8.0))
27 (digestif (>= 1.2.0))
28 (nox-crypto (>= 1.0.0))
29 (alcotest (and :with-test (>= 0.8.1)))
30 (mdx :with-test)
31 (ohex (and :with-test (>= 0.2.0)))
32 (cstruct :with-test))
33)