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: "A cryptographically secure PRNG" 10 11build: [ ["dune" "subst"] {dev} 12 ["dune" "build" "-p" name "-j" jobs ] 13 ["dune" "runtest" "-p" name "-j" jobs] {with-test} ] 14 15depends: [ 16 "ocaml" {>= "4.07.0"} 17 "dune" {>= "1.7"} 18 "dune-configurator" 19 "ounit" {with-test} 20 "cstruct" {>="3.2.0"} 21 "mirage-crypto" {=version} 22 "randomconv" {with-test & >= "0.1.3" & < "0.2.0"} 23 "ounit" {with-test} 24] 25description: """ 26Mirage-crypto-rng provides a random number generator interface, and 27implementations: Fortuna, HMAC-DRBG, getrandom/getentropy based (in the unix 28sublibrary) 29""" 30url { 31 src: 32 "https://github.com/mirage/mirage-crypto/releases/download/v0.6.1/mirage-crypto-v0.6.1.tbz" 33 checksum: [ 34 "sha256=dd99b67fc30dc0144cb7bfdd4d1c783f42d5a7ba847ce31c132712872f66f7b1" 35 "sha512=351354a044d6c8e24c26389eeb8cb174d2506f8e8bef5795078ca80b6e9a0b56a5c306a0c8279d6d947c3c871b9d9fd8a6311b18fc77a54d031deec29582ffc3" 36 ] 37}