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"] 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.""" 23url { 24 src: "https://github.com/xavierleroy/cryptokit/archive/release114.tar.gz" 25 checksum: [ 26 "sha256=05b4d3388adc448a97bdb357eb523f8c1d8117842451cf2354edacd9a2387072" 27 "md5=9c7faf35494a5d0867b41c898e20751d" 28 ] 29}