package mirage-crypto-ec

  1. Overview
  2. Docs

Description

An implementation of key exchange (ECDH) and digital signature (ECDSA/EdDSA) algorithms using code from Fiat (https://github.com/mit-plv/fiat-crypto).

The curves P224 (SECP224R1), P256 (SECP256R1), P384 (SECP384R1), P521 (SECP521R1), and 25519 (X25519, Ed25519) are implemented by this package.

Tags

org:mirage

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-rng = version
  2. mirage-crypto = version
  3. eqaf >= "0.7"
  4. dune-configurator
  5. cstruct >= "6.0.0"
  6. ocaml >= "4.08.0"
  7. dune >= "2.7"

Dev Dependencies (5)

  1. yojson with-test & >= "1.6.0"
  2. ppx_deriving with-test
  3. ppx_deriving_yojson with-test
  4. alcotest with-test & >= "0.8.1"
  5. hex with-test

Used by (10)

  1. awa >= "0.0.3"
  2. dirsp-proscript-mirage
  3. dns-certify >= "5.0.1"
  4. dnssec
  5. letsencrypt >= "0.4.0"
  6. ssh-agent >= "0.4.0"
  7. tls >= "0.13.1"
  8. u2f
  9. webauthn
  10. x509 >= "0.12.0"

Conflicts (1)

  1. ocaml-freestanding