this repo has no description
1opam-version: "2.0" 2homepage: "https://github.com/mirage/mirage-crypto" 3dev-repo: "git+https://github.com/mirage/mirage-crypto.git" 4bug-reports: "https://github.com/mirage/mirage-crypto/issues" 5doc: "https://mirage.github.io/mirage-crypto/doc" 6authors: ["David Kaloper <dk505@cam.ac.uk>" "Hannes Mehnert <hannes@mehnert.org>" ] 7maintainer: "Hannes Mehnert <hannes@mehnert.org>" 8license: "ISC" 9synopsis: "Simple symmetric cryptography for the modern age" 10 11build: [ ["dune" "subst"] {dev} 12 ["dune" "build" "-p" name "-j" jobs ] 13 ["dune" "runtest" "-p" name "-j" jobs] {with-test} ] 14 15depends: [ 16 "conf-pkg-config" {build} 17 "ocaml" {>= "4.07.0"} 18 "dune" {>= "1.7"} 19 "dune-configurator" {>= "2.0.0"} 20 "cpuid" {build & >= "0.1.2"} 21 "ounit" {with-test} 22 "cstruct" {>="3.2.0" & < "6.1.0"} 23 "ocplib-endian" 24] 25depopts: [ 26 "mirage-xen-posix" 27 "ocaml-freestanding" 28] 29conflicts: [ 30 "mirage-xen" {< "3.1.0"} 31 "ocaml-freestanding" {< "0.4.1"} 32] 33description: """ 34Mirage-crypto provides symmetric ciphers (DES, AES, RC4), and hashes (MD5, 35SHA-1, SHA-2). 36""" 37url { 38 src: 39 "https://github.com/mirage/mirage-crypto/releases/download/v0.6.1/mirage-crypto-v0.6.1.tbz" 40 checksum: [ 41 "sha256=dd99b67fc30dc0144cb7bfdd4d1c783f42d5a7ba847ce31c132712872f66f7b1" 42 "sha512=351354a044d6c8e24c26389eeb8cb174d2506f8e8bef5795078ca80b6e9a0b56a5c306a0c8279d6d947c3c871b9d9fd8a6311b18fc77a54d031deec29582ffc3" 43 ] 44} 45available: arch != "ppc64" & arch != "s390x" & arch != "arm32" & arch != "x86_32"