upstream: https://github.com/mirage/mirage-crypto
at main 35 lines 1.3 kB view raw
1opam-version: "2.0" 2homepage: "https://tangled.org/gazagnaire.org/ocaml-crypto" 3dev-repo: "git+https://tangled.org/gazagnaire.org/ocaml-crypto.git" 4bug-reports: "https://tangled.org/gazagnaire.org/ocaml-crypto/issues" 5authors: ["David Kaloper <dk505@cam.ac.uk>" "Hannes Mehnert <hannes@mehnert.org>" ] 6maintainer: "Thomas Gazagnaire <thomas@gazagnaire.org>" 7license: "ISC" 8synopsis: "A cryptographically secure PRNG (fork of mirage-crypto-rng)" 9 10build: [ ["dune" "subst"] {dev} 11 ["dune" "build" "-p" name "-j" jobs ] 12 ["dune" "runtest" "-p" name "-j" jobs] {with-test} ] 13 14depends: [ 15 "ocaml" {>= "4.14.0"} 16 "dune" {>= "2.7"} 17 "dune-configurator" {>= "2.0.0"} 18 "duration" 19 "logs" 20 "crypto" {=version} 21 "digestif" {>= "1.1.4"} 22 "ounit2" {with-test} 23 "randomconv" {with-test & >= "0.2.0"} 24 "ohex" {with-test & >= "0.2.0"} 25] 26conflicts: [ "mirage-runtime" {< "3.8.0"} ] 27description: """ 28WARNING: This is an experimental fork of mirage-crypto-rng. Do not use in production. 29Use mirage-crypto-rng instead: https://github.com/mirage/mirage-crypto 30 31Crypto-rng provides a random number generator interface, and 32implementations: Fortuna, HMAC-DRBG, getrandom/getentropy based (in the unix 33sublibrary) 34""" 35x-maintenance-intent: [ "(latest)" ]