This commit is contained in:
Swrup 2025-02-12 11:19:19 +01:00
commit 7f276c45a0
12 changed files with 673 additions and 0 deletions

20
dune-project Normal file
View file

@ -0,0 +1,20 @@
(lang dune 3.12)
(name purr_chacha)
(generate_opam_files true)
(authors "swrup <swrup@protonmail.com>")
(maintainers "swrup <swrup@protonmail.com>")
(license MIT)
(source
(uri https://forge.kumikode.org/swrup/purr_chacha.git))
(homepage https://forge.kumikode.org/swrup/purr_chacha)
(bug_reports https://forge.kumikode.org/swrup/purr_chacha/issues)
(package
(name purr_chacha)
(synopsis "Implement ChaCha20 stream cipher")
(description "A pure OCaml implementation of ChaCha20 stream cipher")
(depends ocaml dune)
(tags
(cryptography chacha20)))