package mirage-crypto-rng-mirage
Install
Dune Dependency
Authors
Maintainers
Sources
sha256=8a5976fe7837491d2fbd1917b77524776f70ae590e9f55cf757cc8951b5481fc
sha512=ea3a1717574d3dcc3e6ea1e930d2c0c0ffe4e69600886bff1bbaef88333f8ec7e603eb0fae4fe8dece7fc6eb5d7c300ff4e7d20ca276a336b78b401a7139ee77
Description
Mirage-crypto-rng-mirage provides entropy collection code for the RNG.
Published: 21 Jan 2021
README
mirage-crypto - Cryptographic primitives for MirageOS
v0.8.10
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), hashes (MD5, SHA1, SHA2 family), AEAD primitives (AES-GCM, AES-CCM), public-key primitives (RSA, DSA, DH) 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.
Lwt:
let () = Mirage_crypto_rng_lwt.initialize ()
Unix:
let () = Mirage_crypto_rng_unix.initialize ()
Dependencies (10)
-
mirage-clock
>= "3.0.0"
-
mirage-time
>= "2.0.0"
-
mirage-runtime
>= "3.8.0"
-
lwt
>= "4.0.0"
- logs
-
cstruct
>= "4.0.0"
- duration
-
mirage-crypto-rng
= version
-
dune
>= "2.6"
-
ocaml
>= "4.08.0"
Dev Dependencies (3)
-
mirage-clock-unix
with-test & >= "3.0.0"
-
mirage-time-unix
with-test & >= "2.0.0"
-
mirage-unix
with-test & >= "3.0.0" & < "5.0.0"
Used by
None
Conflicts
None