this repo has no description
1opam-version: "2.0"
2maintainer: "Xavier Leroy <xavier.leroy@inria.fr>"
3authors: ["Xavier Leroy"]
4bug-reports: "https://github.com/xavierleroy/cryptokit/issues"
5homepage: "https://github.com/xavierleroy/cryptokit"
6depends: [
7 "ocaml" {>= "4.02.0" & < "5.0"}
8 "ocamlfind"
9 "ocamlbuild" {build & != "0.9.0"}
10 "conf-zlib"
11 "conf-gmp-powm-sec"
12 "zarith" {>= "1.4"}
13]
14build: make
15install: [make "install"]
16remove: [["ocamlfind" "remove" "cryptokit"]]
17synopsis: "A library of cryptographic primitives."
18description: """
19Cryptokit includes block ciphers (AES, DES, 3DES), stream ciphers
20(ARCfour), public-key crypto (RSA, DH), hashes (SHA-1, SHA-256,
21SHA-3), MACs, compression, random number generation -- all presented
22with a compositional, extensible interface."""
23flags: light-uninstall
24url {
25 src: "https://github.com/xavierleroy/cryptokit/archive/release112.tar.gz"
26 checksum: [
27 "sha256=2d0cc9b7dba7a85ea9ca40eb3530e3d659a93e5d0c07d379c894b0aab6c436f8"
28 "md5=01a77daf2ba1543f8274b4b0f94bd119"
29 ]
30}