package mirage-crypto
Install
Dune Dependency
Authors
Maintainers
Sources
sha256=dd99b67fc30dc0144cb7bfdd4d1c783f42d5a7ba847ce31c132712872f66f7b1
sha512=351354a044d6c8e24c26389eeb8cb174d2506f8e8bef5795078ca80b6e9a0b56a5c306a0c8279d6d947c3c871b9d9fd8a6311b18fc77a54d031deec29582ffc3
Description
Mirage-crypto provides symmetric ciphers (DES, AES, RC4), and hashes (MD5, SHA-1, SHA-2).
Published: 15 Mar 2020
README
mirage-crypto - Cryptographic primitives for MirageOS
v0.6.1
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:
timer based ones (see whirlwind RNG paper)
rdseed and rdrand (x86/x86-64 only)
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)
- ocplib-endian
-
cstruct
>= "3.2.0" & < "6.1.0"
-
cpuid
build & >= "0.1.2"
-
dune-configurator
>= "2.0.0"
-
dune
>= "1.7"
-
ocaml
>= "4.07.0"
-
conf-pkg-config
build
Dev Dependencies (1)
-
ounit
with-test
Used by (32)
-
albatross
>= "1.1.0" & < "2.2.0"
-
builder-web
< "0.2.0"
-
ca-certs
< "1.0.0"
-
ca-certs-nss
< "3.104"
-
caldav
< "0.2.3"
-
capnp-rpc-net
>= "0.9.0"
- chacha
-
cohttp-async
>= "3.0.0"
- conex-mirage-crypto
-
current_github
>= "0.2"
-
dns-cli
>= "4.4.0" & < "4.6.3"
-
dns-tsig
>= "4.4.0" & < "9.0.0"
-
dnssec
< "9.0.0"
-
git-mirage
>= "3.7.0" & < "3.17.0"
-
hkdf
= "1.0.4"
-
jose
< "0.5.0"
-
letsencrypt
>= "0.2.1" & < "1.0.0"
-
mirage-crypto-entropy
= "0.6.1"
-
mirage-crypto-pk
= "0.6.1"
-
mirage-crypto-rng
= "0.6.1"
-
opium
>= "0.19.0"
-
otr
>= "0.3.7" & < "1.0.0"
-
pbkdf
>= "1.1.0" & < "2.0.0"
-
rfc6287
>= "1.0.4"
-
salsa20
>= "1.1.0"
-
scrypt-kdf
>= "1.1.0"
-
session
>= "0.5.0"
-
ssh-agent
>= "0.2.1"
-
tls
>= "0.11.0" & < "0.12.3"
-
tls-mirage
< "1.0.0"
- twostep
-
x509
>= "0.10.0" & < "1.0.0"
Conflicts (2)
-
ocaml-freestanding
< "0.4.1"
-
mirage-xen
< "3.1.0"