this repo has no description

Merge pull request #22717 from xavierleroy/cryptokit-1.18

Cryptokit 1.18

Changed files
+39
packages
cryptokit
cryptokit.1.18
+39
packages/cryptokit/cryptokit.1.18/opam
···
+
opam-version: "2.0"
+
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 <xavier.leroy@college-de-france.fr>"]
+
authors: ["Xavier Leroy"]
+
license: "LGPL-2.0-or-later WITH OCaml-LGPL-linking-exception"
+
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"] {dev}
+
[
+
"dune"
+
"build"
+
"-p"
+
name
+
"-j"
+
jobs
+
"@install"
+
"@runtest" {with-test}
+
"@doc" {with-doc}
+
]
+
]
+
dev-repo: "git+https://github.com/xavierleroy/cryptokit.git"
+
url {
+
src: "https://github.com/xavierleroy/cryptokit/archive/release118.tar.gz"
+
checksum: [
+
"sha256=0e9d636dc45967ac3529831ec20aed1aff4c941ae6cfb69b7c29c3d721db2c2b"
+
"sha512=3d797d250941f6b3f991b52238509030aa3a21f0fa4967eb6c9aa1a2d3f1faeac9ddfb088d999b768dce3768741158a5baea386f55a641d09b7a0c148ec87ac9"
+
]
+
}