Skip to content

Commit f38f451

Browse files
authored
Merge pull request #29162 from xavierleroy/cryptokit-1.21
Cryptokit 1.21.1
2 parents aa9ce6f + d450ff0 commit f38f451

File tree

1 file changed

+40
-0
lines changed
  • packages/cryptokit/cryptokit.1.21.1

1 file changed

+40
-0
lines changed
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
opam-version: "2.0"
2+
synopsis: "A library of cryptographic primitives"
3+
description:
4+
"Cryptokit includes authenticated encryption (AES-GCM, Chacha20-Poly1305), block ciphers (AES, DES, 3DES), stream ciphers (Chacha20, ARCfour), public-key cryptography (RSA, ECDSA, DH, ECDH), hashes (SHA-256, SHA-512, SHA-3, Blake2, Blake3), MACs, compression, random number generation -- all presented with a compositional, extensible interface."
5+
maintainer: ["Xavier Leroy <[email protected]>"]
6+
authors: ["Xavier Leroy"]
7+
license: "LGPL-2.0-or-later WITH OCaml-LGPL-linking-exception"
8+
x-maintenance-intent: ["(latest)"]
9+
homepage: "https://github.com/xavierleroy/cryptokit"
10+
bug-reports: "https://github.com/xavierleroy/cryptokit/issues"
11+
depends: [
12+
"ocaml" {>= "4.13.0"}
13+
"dune" {>= "2.5"}
14+
"dune-configurator"
15+
"zarith" {>= "1.13"}
16+
"conf-zlib"
17+
"conf-gmp-powm-sec"
18+
]
19+
build: [
20+
["dune" "subst"] {dev}
21+
[
22+
"dune"
23+
"build"
24+
"-p"
25+
name
26+
"-j"
27+
jobs
28+
"@install"
29+
"@runtest" {with-test}
30+
"@doc" {with-doc}
31+
]
32+
]
33+
dev-repo: "git+https://github.com/xavierleroy/cryptokit.git"
34+
url {
35+
src: "https://github.com/xavierleroy/cryptokit/archive/release1211.tar.gz"
36+
checksum: [
37+
"sha256=186fda8b2063882688e1c2621c8234c35acdf4e10cfdd3213ee04bef16902953"
38+
"sha512=9bbe610b226d719f2b1a478e1584adbd2d12515190ebea6d88259772df6b66f7184914efe5baf43b9074bb1f0424224c6d8cf890e126cacf6f94744c78d83636"
39+
]
40+
}

0 commit comments

Comments
 (0)