package mirage-crypto-rng-mirage
Install
dune-project
Dependency
Authors
Maintainers
Sources
sha256=739a9d39f34027fbc93557f87c5cac4190a52bddadff72f212faa803d6215874
sha512=6b72c77026d91d3a8695012f229c54f8131c873955c1ac2177a5f4b26b38d6ff71627fdc264530556830d38e098fe8d9a8fc1504659b75a18c2bf565bb4d896f
Description
Mirage-crypto-rng-mirage provides entropy collection code for the RNG.
Published: 25 Aug 2025
README
mirage-crypto - Cryptographic primitives for MirageOS
v2.0.2
mirage-crypto is a small cryptographic library that puts emphasis on the applicative style and ease of use. It includes basic ciphers (AES, 3DES, RC4, ChaCha20/Poly1305), AEAD primitives (AES-GCM, AES-CCM, ChaCha20/Poly1305), public-key primitives (RSA, DSA, DH), elliptic curves (NIST P-256, P-384, P-521, and curve 25519), and a strong RNG (Fortuna).
RSA timing attacks are countered by blinding. AES timing attacks are avoided by delegating to AES-NI.
Mirage-crypto is a fork of the ocaml-nocrypto written by David Kaloper. It was forked with the permission of the original author in order to facilitate changes (e.g. build system) required by Mirage that the upstream didn't have time to keep up with.
Mirage-crypto-rng embeds the former mirage-entropy opam package, which implements various entropy sources:
- non-deterministic execution time (used at initial seeding, see the whirlwind RNG paper)
- a hook into the Lwt event loop that collects a timestamp of each event
- rdseed and rdrand (x86/x86-64 only)
Build
dune build
dune runtest
FAQ
RNG seeding
If RNG fails with Fatal error: exception Unseeded_generator
, you need to seed it.
let () = Mirage_crypto_rng_unix.use_default ()
Dependencies (9)
-
mirage-mtime
>= "4.0.0"
-
mirage-sleep
>= "4.0.0"
-
mirage-runtime
>= "3.8.0"
-
lwt
>= "4.0.0"
- logs
- duration
-
mirage-crypto-rng
= version
-
dune
>= "2.7"
-
ocaml
>= "4.13.0"
Dev Dependencies (2)
-
ohex
with-test & >= "0.2.0"
-
mirage-unix
with-test & >= "5.0.0"
Used by (3)
-
caldav
= "0.2.3"
-
conduit-mirage
= "7.1.0"
-
dns-stub
= "9.1.0"
Conflicts
None