-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathcryptokit.opam
35 lines (35 loc) · 1.14 KB
/
cryptokit.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
29
30
31
32
33
34
35
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "1.20"
synopsis: "A library of cryptographic primitives"
description:
"Cryptokit includes authenticated encryption (AES-GCM, Chacha20-Poly1305), block ciphers (AES, DES, 3DES), stream ciphers (Chacha20, ARCfour), public-key cryptography (RSA, DH), hashes (SHA-256, SHA-512, SHA-3, Blake2, Blake3), MACs, compression, random number generation -- all presented with a compositional, extensible interface."
maintainer: ["Xavier Leroy <[email protected]>"]
authors: ["Xavier Leroy"]
license: "LGPL-2.0-or-later WITH OCaml-LGPL-linking-exception"
x-maintenance-intent: ["(latest)"]
homepage: "https://github.com/xavierleroy/cryptokit"
bug-reports: "https://github.com/xavierleroy/cryptokit/issues"
depends: [
"ocaml" {>= "4.08.0"}
"dune" {>= "2.5"}
"dune-configurator"
"zarith" {>= "1.4"}
"conf-zlib"
"conf-gmp-powm-sec"
]
build: [
["dune" "subst"] {pinned}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/xavierleroy/cryptokit.git"