This commit is contained in:
Swrup 2025-02-12 11:19:19 +01:00
commit 24c67a3189
12 changed files with 675 additions and 0 deletions

24
dune-project Normal file
View file

@ -0,0 +1,24 @@
(lang dune 3.12)
(name purr_chacha)
(generate_opam_files true)
(source
(uri https://git.zapashcanon.fr/swrup/purr_chacha.git))
;(documentation https://url/to/documentation)
(authors "swrup <swrup@protonmail.com>")
(maintainers "swrup <swrup@protonmail.com>")
(license MIT)
(package
(name purr_chacha)
(synopsis "Implement ChaCha20 stream cipher")
(description "A pure OCaml implementation of ChaCha20 stream cipher")
(depends ocaml dune)
(tags
(cryptography chacha20)))