package mirage-crypto-pk

  1. Overview
  2. Docs
Simple public-key cryptography for the modern age

Install

Dune Dependency

Authors

Maintainers

Sources

mirage-crypto-v0.8.7.tbz
sha256=bebbbe6c175aa68c763c2e5caad42de588ab0493a420bae7c03f8d390d34a8bf
sha512=e8c3f57e868361b16014666e95dbadbd22cf9295a168c61e2ab278333d79039772407468154b3a88662bb47b49b199a45b568a5d04054b445cf4e065cb448809

Description

Mirage-crypto-pk provides public-key cryptography (RSA, DSA, DH).

Published: 04 Nov 2020

README

mirage-crypto - Cryptographic primitives for MirageOS

v0.8.7

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

Dev Dependencies (2)

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

Used by (18)

  1. albatross < "1.3.0"
  2. awa
  3. certify >= "0.3.3"
  4. conduit-lwt-tls
  5. conex-mirage-crypto
  6. current_github >= "0.2"
  7. dns-certify >= "4.6.3"
  8. dns-cli >= "4.6.3"
  9. dnssec
  10. letsencrypt >= "0.2.1" & < "0.2.3"
  11. oidc
  12. otr >= "0.3.7"
  13. rfc6287 >= "1.0.4"
  14. ssh-agent >= "0.2.1"
  15. tls >= "0.11.0"
  16. tls-mirage
  17. twostep
  18. x509 >= "0.10.0" & != "0.12.0"

Conflicts (1)

  1. mirage-xen < "6.0.0"