package mirage-crypto-rng

  1. Overview
  2. Docs
A cryptographically secure PRNG

Install

Dune Dependency

Authors

Maintainers

Sources

mirage-crypto-v0.10.5.tbz
sha256=79e28c49166b0624f358bbfcd0fe4b7a8b8f89bdb8b938a09361cbb4e44aa495
sha512=18b493be1e7909e8429bc5ddd1f0d1175aab9e21a10711e95749b74f1d9f851a5cfd3ee1a5b3b73a47b5fc54d6458a911ec586ab243e63bf276d2777a787ae51

Description

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

Published: 23 Nov 2021

README

mirage-crypto - Cryptographic primitives for MirageOS

v0.10.5

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 ()

Unix:

let () = Mirage_crypto_rng_unix.initialize ()

Dependencies (9)

  1. lwt >= "4.0.0"
  2. mtime >= "1.0.0"
  3. mirage-crypto = version
  4. logs
  5. cstruct >= "6.0.0"
  6. duration
  7. dune-configurator >= "2.0.0"
  8. dune >= "2.6"
  9. ocaml >= "4.08.0"

Dev Dependencies (2)

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

Used by (50)

  1. albatross < "1.5.6"
  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. capnp-rpc-unix >= "0.9.0" & < "1.2.3"
  9. caqti-eio >= "2.1.1"
  10. certify >= "0.3.3"
  11. conduit-async-tls
  12. conduit-lwt-tls
  13. conex-mirage-crypto
  14. current_web >= "0.3" & < "0.6.4"
  15. dirsp-proscript-mirage
  16. dkim >= "0.2.0" & < "0.5.0"
  17. dkim-mirage >= "0.2.0" & < "0.5.0"
  18. dns-certify >= "4.6.3"
  19. dns-cli >= "4.4.0" & != "4.6.0" & < "7.0.0"
  20. dns-client >= "4.5.0" & < "7.0.0"
  21. dns-server >= "4.4.0" & < "7.0.0"
  22. dream
  23. git >= "2.1.3"
  24. git-mirage = "2.1.3"
  25. git-unix >= "2.1.3" & < "3.13.0"
  26. http-mirage-client >= "0.0.3"
  27. hyper
  28. jose >= "0.8.2"
  29. letsencrypt >= "0.2.1" & < "0.5.0"
  30. letsencrypt-app < "0.5.0"
  31. miou
  32. mirage-block-ccm = "1.1.0"
  33. mirage-crypto-ec = "0.10.5"
  34. mirage-crypto-pk = "0.10.5"
  35. mirage-crypto-rng-async = "0.10.5"
  36. mirage-crypto-rng-mirage = "0.10.5"
  37. mrmime >= "0.5.0"
  38. oidc
  39. otr >= "0.3.7" & < "0.3.10"
  40. paf < "0.5.0"
  41. paf-cohttp < "0.5.0"
  42. rfc6287 >= "1.0.4"
  43. session >= "0.5.0"
  44. ssh-agent >= "0.3.0" & < "0.4.1"
  45. tls >= "0.11.0"
  46. tls-eio < "0.17.2"
  47. twostep
  48. u2f
  49. webauthn
  50. x509 >= "0.10.0" & < "0.16.4"

Conflicts (1)

  1. mirage-runtime < "3.8.0"