package mirage-crypto-rng

  1. Overview
  2. Docs
A cryptographically secure PRNG

Install

Dune Dependency

Authors

Maintainers

Sources

mirage-crypto-0.11.3.tbz
sha256=bfb530fa169cd905ebc7e2449f3407cfbd67023ac0b291b8b6f4a1437a5d95b1
sha512=7b6f4e8128622b53eb2176881b5d6160f224e8606c7dd21aaf47974f15db7aa475cffaff3214aaaabba0f8986398f159c1fbb1bff29228c9b0a3fae67ef8d731

Description

Mirage-crypto-rng provides a random number generator interface, and implementations: Fortuna, HMAC-DRBG, getrandom/getentropy based (in the unix sublibrary)

Published: 27 Feb 2024

README

mirage-crypto - Cryptographic primitives for MirageOS

v0.11.3

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)

API documentation online

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 (module Mirage_crypto_rng.Fortuna)

Unix:

let () = Mirage_crypto_rng_unix.initialize (module Mirage_crypto_rng.Fortuna)

Dependencies (7)

  1. mirage-crypto = version
  2. logs
  3. cstruct >= "6.0.0"
  4. duration
  5. dune-configurator >= "2.0.0"
  6. dune >= "2.7"
  7. ocaml >= "4.08.0"

Dev Dependencies (2)

  1. randomconv with-test & >= "0.1.3" & < "0.2.0"
  2. ounit2 with-test

Used by (49)

  1. albatross
  2. awa >= "0.1.2"
  3. awa-lwt
  4. builder-web
  5. caldav
  6. capnp-rpc-mirage >= "0.9.0" & < "1.2.3"
  7. capnp-rpc-net >= "0.9.0"
  8. caqti-eio >= "2.1.1"
  9. chamelon >= "0.0.9.1" & < "0.1.1"
  10. conduit-async-tls
  11. conduit-lwt-tls
  12. current_web >= "0.6.4"
  13. dkim >= "0.5.0"
  14. dkim-mirage >= "0.2.0"
  15. dns-certify >= "4.6.3"
  16. dns-cli >= "4.4.0" & != "4.6.0"
  17. dns-client >= "6.0.0"
  18. dns-server >= "7.0.0"
  19. dream >= "1.0.0~alpha5"
  20. git >= "3.0.0"
  21. git-mirage = "2.1.3"
  22. git-unix >= "3.0.0" & < "3.9.0" | >= "3.13.0"
  23. http-mirage-client >= "0.0.3"
  24. hyper >= "1.0.0~alpha2"
  25. letsencrypt >= "0.5.0"
  26. letsencrypt-app >= "0.5.0"
  27. miou
  28. mirage-block-ccm >= "2.0.0"
  29. mirage-crypto-ec >= "0.11.3"
  30. mirage-crypto-pk >= "0.11.3"
  31. mirage-crypto-rng-async >= "0.11.3"
  32. mirage-crypto-rng-eio >= "0.11.3"
  33. mirage-crypto-rng-lwt >= "0.11.3"
  34. mirage-crypto-rng-mirage >= "0.11.3"
  35. mrmime >= "0.5.0"
  36. ocluster >= "0.2.1"
  37. oidc
  38. otr >= "0.3.7" & < "0.3.10"
  39. paf < "0.0.6" | >= "0.5.0"
  40. paf-cohttp < "0.0.6" | = "0.1.0" | >= "0.5.0"
  41. random
  42. riot >= "0.0.8"
  43. session >= "0.5.0"
  44. ssh-agent >= "0.4.1"
  45. tls >= "0.16.0"
  46. tls-eio
  47. u2f
  48. webauthn
  49. x509 >= "0.16.4"

Conflicts (1)

  1. mirage-runtime < "3.8.0"