package mirage-crypto

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

Install

Dune Dependency

Authors

Maintainers

Sources

mirage-crypto-1.0.0.tbz
sha256=4f9b06af4f6440eee85e5645c01184ca10cd30a8127864e80fc5f206cf864769
sha512=73855eeea482b6ba4b7e095a92af2322e97a6da67bee79ef2b3b05449d7ed522712dd11e825759e812eec21281083ef8422429a156851930078aad41215ecdfc

Description

Mirage-crypto provides symmetric ciphers (DES, AES, RC4, ChaCha20/Poly1305).

Published: 29 Jun 2024

README

mirage-crypto - Cryptographic primitives for MirageOS

v1.0.0

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), AEAD primitives (AES-GCM, AES-CCM, ChaCha20/Poly1305), public-key primitives (RSA, DSA, DH), elliptic curves (NIST P-256, P-384, P-521, and curve 25519), 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 (4)

  1. eqaf >= "0.8"
  2. dune-configurator >= "2.0.0"
  3. dune >= "2.7"
  4. ocaml >= "4.13.0"

Dev Dependencies (2)

  1. ohex with-test & >= "0.2.0"
  2. ounit2 with-test

Used by (3)

  1. ca-certs-nss >= "3.101"
  2. mirage-crypto-pk >= "1.0.0"
  3. mirage-crypto-rng >= "1.0.0"

Conflicts (2)

  1. result < "1.5"
  2. ocaml-freestanding
OCaml

Innovation. Community. Security.