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"
6dev-repo: "git+https://github.com/xavierleroy/cryptokit.git"
7depends: [
8 "ocaml" {>= "4.02.0" & < "5.0"}
9 "ocamlfind" {build}
10 "ocamlbuild" {build & != "0.9.0"}
11 "conf-zlib"
12 "conf-gmp-powm-sec"
13 "zarith" {>= "1.4"}
14]
15build: make
16install: [make "install"]
17remove: [["ocamlfind" "remove" "cryptokit"]]
18synopsis: "A library of cryptographic primitives."
19description: """
20Cryptokit includes block ciphers (AES, DES, 3DES), stream ciphers
21(ARCfour), public-key crypto (RSA, DH), hashes (SHA-1, SHA-256,
22SHA-3), MACs, compression, random number generation -- all presented
23with a compositional, extensible interface."""
24flags: light-uninstall
25url {
26 src: "https://github.com/xavierleroy/cryptokit/archive/release113.tar.gz"
27 checksum: [
28 "sha256=3823198d5fa33a9888c6e5f45ff834733ebfd3f6322e0838b6212425ae9592b8"
29 "md5=4d726550381af513ccf56dfc94849c89"
30 ]
31}