this repo has no description
1opam-version: "2.0"
2maintainer: "opam-devel@lists.ocaml.org"
3authors: ["Xavier Leroy"]
4bug-reports: "https://forge.ocamlcore.org/tracker/?group_id=133"
5homepage: "https://forge.ocamlcore.org/projects/cryptokit/"
6remove: [["ocamlfind" "remove" "cryptokit"]]
7depends: [
8 "ocaml" {>= "4.02.0" & < "5.0"}
9 "ocamlfind"
10 "ocamlbuild" {build & != "0.9.0"}
11 "conf-zlib"
12 "conf-gmp-powm-sec"
13 "zarith" {>= "1.4"}
14]
15patches: [
16 "aesni-detect.patch"
17 "aesni-align.patch"
18]
19build: make
20install: [make "install"]
21synopsis: "Cryptographic primitives library."
22description: """
23Cryptokit includes block ciphers (AES, DES, 3DES), stream ciphers (ARCfour),
24public-key crypto (RSA, DH), hashes (SHA-1, SHA-256), MACs, random number
25generation -- all presented with a compositional, extensible interface."""
26flags: light-uninstall
27url {
28 src:
29 "https://download.ocamlcore.org/cryptokit/cryptokit/1.11/cryptokit-1.11.tar.gz"
30 checksum: [
31 "sha256=489ac4192e78be66e706d8380b48f18baf537b5e620be52c526509474bb03bb0"
32 "md5=931f8240ad30d9930d0f584f2921de69"
33 ]
34}
35extra-source "aesni-detect.patch" {
36 src:
37 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/cryptokit/aesni-detect.patch"
38 checksum: [
39 "sha256=616a5e27f822439dd0af68d467f3b75933553d74cd9e8e0f2aa0a11f54d74e85"
40 "md5=3784e2496e42df30e39a9eb9906d6082"
41 ]
42}
43extra-source "aesni-align.patch" {
44 src:
45 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/cryptokit/aesni-align.patch"
46 checksum: [
47 "sha256=dd41dad38be2c025abd78564bcf33b241ffcf50f4f5eb50984e4f40e949ca920"
48 "md5=2d06282cde3943b4daed6eba3ea6c05e"
49 ]
50}