package mirage-crypto

  1. Overview
  2. Docs
Simple symmetric cryptography for the modern age

Install

Dune Dependency

Authors

Maintainers

Sources

mirage-crypto-v0.6.2.tbz
sha256=e2284dc0f8d37110f4713b87145a26a2bbce3e43f14be51e88de18db5922b823
sha512=2c9808261aec8498921e4dce2d66214e10dfe65e2c3729c081731d6c44abc0e990233e5398c9c2d31a97d1a40bdd38920c54817f572d3b592f4257ce85b331da

Description

Mirage-crypto provides symmetric ciphers (DES, AES, RC4), and hashes (MD5, SHA-1, SHA-2).

Published: 19 Mar 2020

README

mirage-crypto - Cryptographic primitives for MirageOS

v0.6.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), 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-entropy embeds the former mirage-entropy opam package, which implements various entropy sources for MirageOS unikernels:

API documentation online

Build

dune build
dune runtest

FAQ

RNG seeding

If RNG fails with Fatal error: exception Uncommon.Boot.Unseeded_generator, you need to [seed][doc-entropy] it.

Unix:

let () = Mirage_crypto_rng_unix.initialize ()
Illegal instructions
Program terminated with signal SIGILL, Illegal instruction.
#0  _mm_aeskeygenassist_si128 (__C=<optimized out>, __X=...)

Mirage_crypto has CPU acceleration support (SSE2+AES-NI), but no run-time autodetection yet. You compiled the library with acceleration, but you are using it on a machine that does not support it.

The environment variable MIRAGE_CRYPTO_ACCELERATE can be used to override detection:

  • MIRAGE_CRYPTO_ACCELERATE=false dune build force-disables non-portable code.

  • MIRAGE_CRYPTO_ACCELERATE=true dune build force-enables non-portable code.

  • Otherwise, it matches the capabilities of the build machine.

Dependencies (7)

  1. ocplib-endian
  2. cstruct >= "3.2.0" & < "6.1.0"
  3. cpuid build & >= "0.1.2"
  4. dune-configurator >= "2.0.0"
  5. dune >= "1.7"
  6. ocaml >= "4.07.0"
  7. conf-pkg-config build

Dev Dependencies (1)

  1. ounit with-test

Used by (32)

  1. albatross >= "1.1.0"
  2. builder-web
  3. ca-certs
  4. ca-certs-nss
  5. caldav
  6. capnp-rpc-net >= "0.9.0"
  7. chacha
  8. cohttp-async >= "3.0.0"
  9. conex-mirage-crypto
  10. current_github >= "0.2"
  11. dns-cli >= "4.4.0" & < "4.6.3"
  12. dns-tsig >= "4.4.0"
  13. dnssec
  14. git-mirage >= "3.7.0"
  15. hkdf >= "1.0.4"
  16. jose < "0.5.0"
  17. letsencrypt >= "0.2.1"
  18. mirage-crypto-entropy >= "0.6.2"
  19. mirage-crypto-pk = "0.6.2"
  20. mirage-crypto-rng = "0.6.2"
  21. opium >= "0.19.0"
  22. otr >= "0.3.7"
  23. pbkdf >= "1.1.0"
  24. rfc6287 >= "1.0.4"
  25. salsa20 >= "1.1.0"
  26. scrypt-kdf >= "1.1.0"
  27. session >= "0.5.0"
  28. ssh-agent >= "0.2.1"
  29. tls >= "0.11.0" & < "0.12.3"
  30. tls-mirage
  31. twostep
  32. x509 >= "0.10.0"

Conflicts (2)

  1. ocaml-freestanding < "0.4.1"
  2. mirage-xen < "3.1.0"