init
This commit is contained in:
commit
24c67a3189
12 changed files with 675 additions and 0 deletions
28
purr_chacha.opam
Normal file
28
purr_chacha.opam
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
# This file is generated by dune, edit dune-project instead
|
||||
opam-version: "2.0"
|
||||
synopsis: "Implement ChaCha20 stream cipher"
|
||||
description: "A pure OCaml implementation of ChaCha20 stream cipher"
|
||||
maintainer: ["swrup <swrup@protonmail.com>"]
|
||||
authors: ["swrup <swrup@protonmail.com>"]
|
||||
license: "MIT"
|
||||
tags: ["cryptography" "chacha20"]
|
||||
depends: [
|
||||
"ocaml"
|
||||
"dune" {>= "3.12"}
|
||||
"odoc" {with-doc}
|
||||
]
|
||||
build: [
|
||||
["dune" "subst"] {dev}
|
||||
[
|
||||
"dune"
|
||||
"build"
|
||||
"-p"
|
||||
name
|
||||
"-j"
|
||||
jobs
|
||||
"@install"
|
||||
"@runtest" {with-test}
|
||||
"@doc" {with-doc}
|
||||
]
|
||||
]
|
||||
dev-repo: "https://git.zapashcanon.fr/swrup/purr_chacha.git"
|
||||
Loading…
Add table
Add a link
Reference in a new issue