package mirage-crypto-pk
Install
Dune Dependency
Authors
Maintainers
Sources
sha256=8b6ba8c51494c1b4585bf3a3a94e8f7c10419f4ffbe1c5fe77934de51df59fa5
sha512=5f130ae2690dcd4f9fa1df08209d3f7943120e87ac5833b3ba8b678e915be6efbca0dd062abedb71e0c1d158f229b4d35fa22bbb1d4a0c3aa0776d9133bb558c
Description
Mirage-crypto-pk provides public-key cryptography (RSA, DSA, DH).
Published: 04 Jan 2021
README
mirage-crypto - Cryptographic primitives for MirageOS
v0.8.8
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)
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 ()
Dependencies (14)
- zarith-freestanding
- mirage-no-xen
- mirage-no-solo5
-
rresult
>= "0.6.0"
-
eqaf
>= "0.7"
-
zarith
>= "1.4"
- ppx_sexp_conv
- sexplib
-
mirage-crypto-rng
= version
-
mirage-crypto
= version
-
cstruct
>= "3.2.0"
-
dune
>= "2.6"
-
ocaml
>= "4.08.0"
-
conf-gmp-powm-sec
build
Dev Dependencies (2)
-
randomconv
with-test & >= "0.1.3" & < "0.2.0"
-
ounit
with-test
Used by (18)
-
albatross
< "1.3.0"
- awa
-
certify
>= "0.3.3"
- conduit-lwt-tls
- conex-mirage-crypto
-
current_github
>= "0.2"
-
dns-certify
>= "4.6.3" & < "9.0.0"
-
dns-cli
>= "4.6.3" & < "9.0.0"
-
dnssec
< "9.0.0"
-
letsencrypt
>= "0.2.1" & < "0.2.3"
- oidc
-
otr
>= "0.3.7" & < "1.0.0"
-
rfc6287
>= "1.0.4"
-
ssh-agent
>= "0.2.1"
-
tls
>= "0.11.0" & < "1.0.0"
-
tls-mirage
< "1.0.0"
- twostep
-
x509
>= "0.10.0" & != "0.12.0"
Conflicts (1)
-
mirage-xen
< "6.0.0"