this repo has no description
1opam-version: "2.0" 2synopsis: "A library of cryptographic primitives" 3description: """\ 4Cryptokit includes block ciphers (AES, DES, 3DES), stream ciphers 5(ARCfour), public-key crypto (RSA, DH), hashes (SHA-1, SHA-256, 6SHA-3), MACs, compression, random number generation -- all presented 7with a compositional, extensible interface.""" 8maintainer: "Xavier Leroy <xavier.leroy@college-de-france.fr>" 9authors: "Xavier Leroy" 10homepage: "https://github.com/xavierleroy/cryptokit" 11bug-reports: "https://github.com/xavierleroy/cryptokit/issues" 12depends: [ 13 "ocaml" {>= "4.03.0"} 14 "dune" {>= "2.0"} 15 "dune-configurator" 16 "zarith" {>= "1.4"} 17 "conf-zlib" 18 "conf-gmp-powm-sec" 19] 20build: [ 21 ["dune" "subst"] {dev} 22 [ 23 "dune" 24 "build" 25 "-p" 26 name 27 "-j" 28 jobs 29 "@install" 30 "@runtest" {with-test} 31 "@doc" {with-doc} 32 ] 33] 34dev-repo: "git+https://github.com/xavierleroy/cryptokit.git" 35url { 36 src: "https://github.com/xavierleroy/cryptokit/archive/release1161.tar.gz" 37 checksum: [ 38 "md5=18591fc3f467bc33681be2cede36b8f1" 39 "sha512=28913a7c35ae951a4c464287acc511ee1bdc9d03b5928e2243c5ae5cbb8b10afe8e84d7a73ba6478ed62657d01fdb6f02472739255c33de3671c4130b659da52" 40 ] 41}