this repo has no description

[new release] mirage-crypto, mirage-crypto-rng, mirage-crypto-rng-mirage, mirage-crypto-rng-eio, mirage-crypto-rng-async, mirage-crypto-pk and mirage-crypto-ec (0.10.7)

CHANGES:

- mirage-crypto-rng-eio: new package for seeding and feeding entropy to the
rng with eio (mirage/mirage-crypto#155 @bikallem, @talex5, @hannesm)
- mirage-crypto-ec: expose Dsa.byte_length (mirage/mirage-crypto#164 @hannesm)
- CI: various fixes (mirage/mirage-crypto#154 mirage/mirage-crypto#164 @hannesm)
- mirage-crypto-rng-mirage: use 'a generator type alias
- mirage-crypto-rng: improve setup_rng message (add async, revise lwt) (mirage/mirage-crypto#161
@hannesm)
- mirage-crypto-rng-mirage: always feed the default generator (as done in
a8c7bbd2552a9d2177450e95f280342f80fba01d for the lwt feeding) (mirage/mirage-crypto#161 @hannesm)
- ec: update generated code to recent fiat-crypto (mirage/mirage-crypto#156 @hannesm)

Changed files
+311
packages
mirage-crypto
mirage-crypto.0.10.7
mirage-crypto-ec
mirage-crypto-ec.0.10.7
mirage-crypto-pk
mirage-crypto-pk.0.10.7
mirage-crypto-rng
mirage-crypto-rng.0.10.7
mirage-crypto-rng-async
mirage-crypto-rng-async.0.10.7
mirage-crypto-rng-eio
mirage-crypto-rng-eio.0.10.7
mirage-crypto-rng-mirage
mirage-crypto-rng-mirage.0.10.7
+64
packages/mirage-crypto-ec/mirage-crypto-ec.0.10.7/opam
···
+
opam-version: "2.0"
+
synopsis: "Elliptic Curve Cryptography with primitives taken from Fiat"
+
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.
+
"""
+
maintainer: "Hannes Mehnert <hannes@mehnert.org>"
+
authors: [
+
"Hannes Mehnert <hannes@mehnert.org>"
+
"Nathan Rebours <nathan.p.rebours@gmail.com>"
+
"Clément Pascutto <clement@tarides.com>"
+
"Etienne Millon <me@emillon.org>"
+
# and from the fiat-crypto AUTHORS file
+
"Andres Erbsen <andreser@mit.edu>"
+
"Google Inc."
+
"Jade Philipoom <jadep@mit.edu> <jade.philipoom@gmail.com>"
+
"Massachusetts Institute of Technology"
+
"Zoe Paraskevopoulou <zoe.paraskevopoulou@gmail.com>"
+
]
+
license: "MIT"
+
homepage: "https://github.com/mirage/mirage-crypto"
+
doc: "https://mirage.github.io/mirage-crypto/doc"
+
bug-reports: "https://github.com/mirage/mirage-crypto/issues"
+
depends: [
+
"conf-pkg-config" {build}
+
"dune" {>= "2.6"}
+
"ocaml" {>= "4.08.0"}
+
"cstruct" {>= "6.0.0"}
+
"dune-configurator"
+
"eqaf" {>= "0.7"}
+
"mirage-crypto" {=version}
+
"mirage-crypto-rng" {=version}
+
"mirage-crypto-pk" {with-test & =version}
+
"hex" {with-test}
+
"alcotest" {with-test}
+
"asn1-combinators" {with-test & >= "0.2.5"}
+
"ppx_deriving_yojson" {with-test}
+
"ppx_deriving" {with-test}
+
"yojson" {with-test & >= "1.6.0"}
+
]
+
depopts: ["ocaml-freestanding"]
+
conflicts: [
+
"mirage-xen" {< "6.0.0"}
+
"ocaml-freestanding" {< "0.4.1"}
+
]
+
build: [
+
["dune" "subst"] {dev}
+
["dune" "build" "-p" name "-j" jobs]
+
["dune" "runtest" "-p" name "-j" jobs] {with-test}
+
]
+
dev-repo: "git+https://github.com/mirage/mirage-crypto.git"
+
tags: ["org:mirage"]
+
url {
+
src:
+
"https://github.com/mirage/mirage-crypto/releases/download/v0.10.7/mirage-crypto-0.10.7.tbz"
+
checksum: [
+
"sha256=3e818a760c235c5b684c7b6b43b1cdd2a7dd04e0105b680d524f836eb988a69c"
+
"sha512=e9c3e6ac0fa3dae2dda9e91d5362ad08aaa65241b968a0c12484db4042146d6af7b46910784ce41bdd68783eede93f35a81aa37a2cd125dfc43503c78007b8b9"
+
]
+
}
+
x-commit-hash: "d3e519f93d2d9df1fb366aaf96996803518c8597"
+43
packages/mirage-crypto-pk/mirage-crypto-pk.0.10.7/opam
···
+
opam-version: "2.0"
+
homepage: "https://github.com/mirage/mirage-crypto"
+
dev-repo: "git+https://github.com/mirage/mirage-crypto.git"
+
bug-reports: "https://github.com/mirage/mirage-crypto/issues"
+
doc: "https://mirage.github.io/mirage-crypto/doc"
+
authors: ["David Kaloper <dk505@cam.ac.uk>" "Hannes Mehnert <hannes@mehnert.org>" ]
+
maintainer: "Hannes Mehnert <hannes@mehnert.org>"
+
license: "ISC"
+
synopsis: "Simple public-key cryptography for the modern age"
+
+
build: [ ["dune" "subst"] {dev}
+
["dune" "build" "-p" name "-j" jobs ]
+
["dune" "runtest" "-p" name "-j" jobs] {with-test} ]
+
+
depends: [
+
"conf-gmp-powm-sec" {build}
+
"ocaml" {>= "4.08.0"}
+
"dune" {>= "2.6"}
+
"ounit2" {with-test}
+
"randomconv" {with-test & >= "0.1.3"}
+
"cstruct" {>="6.00"}
+
"mirage-crypto" {=version}
+
"mirage-crypto-rng" {=version}
+
"sexplib0"
+
"zarith" {>= "1.4"}
+
"eqaf" {>= "0.8"}
+
(("mirage-no-solo5" & "mirage-no-xen") | "zarith-freestanding" | "mirage-runtime" {>= "4.0"})
+
]
+
conflicts: [
+
"mirage-xen" {< "6.0.0"}
+
]
+
description: """
+
Mirage-crypto-pk provides public-key cryptography (RSA, DSA, DH).
+
"""
+
url {
+
src:
+
"https://github.com/mirage/mirage-crypto/releases/download/v0.10.7/mirage-crypto-0.10.7.tbz"
+
checksum: [
+
"sha256=3e818a760c235c5b684c7b6b43b1cdd2a7dd04e0105b680d524f836eb988a69c"
+
"sha512=e9c3e6ac0fa3dae2dda9e91d5362ad08aaa65241b968a0c12484db4042146d6af7b46910784ce41bdd68783eede93f35a81aa37a2cd125dfc43503c78007b8b9"
+
]
+
}
+
x-commit-hash: "d3e519f93d2d9df1fb366aaf96996803518c8597"
+39
packages/mirage-crypto-rng-async/mirage-crypto-rng-async.0.10.7/opam
···
+
opam-version: "2.0"
+
homepage: "https://github.com/mirage/mirage-crypto"
+
dev-repo: "git+https://github.com/mirage/mirage-crypto.git"
+
bug-reports: "https://github.com/mirage/mirage-crypto/issues"
+
doc: "https://mirage.github.io/mirage-crypto/doc"
+
authors: ["David Kaloper <dk505@cam.ac.uk>" "Hannes Mehnert <hannes@mehnert.org>" ]
+
maintainer: "Hannes Mehnert <hannes@mehnert.org>"
+
license: "ISC"
+
synopsis: "Feed the entropy source in an Async-friendly way"
+
+
build: [ ["dune" "subst"] {dev}
+
["dune" "build" "-p" name "-j" jobs ]
+
["dune" "runtest" "-p" name "-j" jobs] {with-test} ]
+
+
depends: [
+
"ocaml" {>= "4.08.0"}
+
"dune" {>= "2.6"}
+
"dune-configurator" {>= "2.0.0"}
+
"async" {>= "v0.14"}
+
"logs"
+
"mirage-crypto" {=version}
+
"mirage-crypto-rng" {=version}
+
]
+
available: os != "win32"
+
description: """
+
+
Mirage-crypto-rng-async feeds the entropy source for Mirage_crypto_rng-based
+
random number genreator implementations, in an Async-friendly way.
+
"""
+
url {
+
src:
+
"https://github.com/mirage/mirage-crypto/releases/download/v0.10.7/mirage-crypto-0.10.7.tbz"
+
checksum: [
+
"sha256=3e818a760c235c5b684c7b6b43b1cdd2a7dd04e0105b680d524f836eb988a69c"
+
"sha512=e9c3e6ac0fa3dae2dda9e91d5362ad08aaa65241b968a0c12484db4042146d6af7b46910784ce41bdd68783eede93f35a81aa37a2cd125dfc43503c78007b8b9"
+
]
+
}
+
x-commit-hash: "d3e519f93d2d9df1fb366aaf96996803518c8597"
+
+38
packages/mirage-crypto-rng-eio/mirage-crypto-rng-eio.0.10.7/opam
···
+
opam-version: "2.0"
+
homepage: "https://github.com/mirage/mirage-crypto"
+
dev-repo: "git+https://github.com/mirage/mirage-crypto.git"
+
bug-reports: "https://github.com/mirage/mirage-crypto/issues"
+
doc: "https://mirage.github.io/mirage-crypto/doc"
+
authors: ["Bikal Gurung <gbikal@gmail.com>" ]
+
maintainer: "Bikal Gurung <gbikal@gmail.com>"
+
license: "ISC"
+
synopsis: "Feed the entropy source in an eio-friendly way"
+
+
build: [ ["dune" "subst"] {dev}
+
["dune" "build" "-p" name "-j" jobs ]
+
["dune" "runtest" "-p" name "-j" jobs] {with-test} ]
+
+
depends: [
+
"base-domains"
+
"dune" {>= "3.0"}
+
"eio" {>= "0.3"}
+
"cstruct" {>= "6.0.0"}
+
"logs"
+
"mirage-crypto-rng" {=version}
+
"duration"
+
"mtime"
+
"eio_main" {with-test}
+
]
+
description: """
+
Mirage-crypto-rng-eio feeds the entropy source for Mirage_crypto_rng-based
+
random number genreator implementations, in an eio-friendly way.
+
"""
+
url {
+
src:
+
"https://github.com/mirage/mirage-crypto/releases/download/v0.10.7/mirage-crypto-0.10.7.tbz"
+
checksum: [
+
"sha256=3e818a760c235c5b684c7b6b43b1cdd2a7dd04e0105b680d524f836eb988a69c"
+
"sha512=e9c3e6ac0fa3dae2dda9e91d5362ad08aaa65241b968a0c12484db4042146d6af7b46910784ce41bdd68783eede93f35a81aa37a2cd125dfc43503c78007b8b9"
+
]
+
}
+
x-commit-hash: "d3e519f93d2d9df1fb366aaf96996803518c8597"
+41
packages/mirage-crypto-rng-mirage/mirage-crypto-rng-mirage.0.10.7/opam
···
+
opam-version: "2.0"
+
homepage: "https://github.com/mirage/mirage-crypto"
+
dev-repo: "git+https://github.com/mirage/mirage-crypto.git"
+
bug-reports: "https://github.com/mirage/mirage-crypto/issues"
+
doc: "https://mirage.github.io/mirage-crypto/doc"
+
authors: ["David Kaloper <dk505@cam.ac.uk>" "Hannes Mehnert <hannes@mehnert.org>" ]
+
maintainer: "Hannes Mehnert <hannes@mehnert.org>"
+
license: "BSD-2-Clause"
+
synopsis: "Entropy collection for a cryptographically secure PRNG"
+
+
build: [ ["dune" "subst"] {dev}
+
["dune" "build" "-p" name "-j" jobs ]
+
["dune" "runtest" "-p" name "-j" jobs] {with-test} ]
+
+
depends: [
+
"ocaml" {>= "4.08.0"}
+
"dune" {>= "2.6"}
+
"mirage-crypto-rng" {=version}
+
"duration"
+
"cstruct" {>= "4.0.0"}
+
"logs"
+
"lwt" {>= "4.0.0"}
+
"mirage-runtime" {>= "3.8.0"}
+
"mirage-time" {>= "2.0.0"}
+
"mirage-clock" {>= "3.0.0"}
+
"mirage-unix" {with-test & >= "5.0.0"}
+
"mirage-time-unix" {with-test & >= "2.0.0"}
+
"mirage-clock-unix" {with-test & >= "3.0.0"}
+
]
+
description: """
+
Mirage-crypto-rng-mirage provides entropy collection code for the RNG.
+
"""
+
url {
+
src:
+
"https://github.com/mirage/mirage-crypto/releases/download/v0.10.7/mirage-crypto-0.10.7.tbz"
+
checksum: [
+
"sha256=3e818a760c235c5b684c7b6b43b1cdd2a7dd04e0105b680d524f836eb988a69c"
+
"sha512=e9c3e6ac0fa3dae2dda9e91d5362ad08aaa65241b968a0c12484db4042146d6af7b46910784ce41bdd68783eede93f35a81aa37a2cd125dfc43503c78007b8b9"
+
]
+
}
+
x-commit-hash: "d3e519f93d2d9df1fb366aaf96996803518c8597"
+43
packages/mirage-crypto-rng/mirage-crypto-rng.0.10.7/opam
···
+
opam-version: "2.0"
+
homepage: "https://github.com/mirage/mirage-crypto"
+
dev-repo: "git+https://github.com/mirage/mirage-crypto.git"
+
bug-reports: "https://github.com/mirage/mirage-crypto/issues"
+
doc: "https://mirage.github.io/mirage-crypto/doc"
+
authors: ["David Kaloper <dk505@cam.ac.uk>" "Hannes Mehnert <hannes@mehnert.org>" ]
+
maintainer: "Hannes Mehnert <hannes@mehnert.org>"
+
license: "ISC"
+
synopsis: "A cryptographically secure PRNG"
+
+
build: [ ["dune" "subst"] {dev}
+
["dune" "build" "-p" name "-j" jobs ]
+
["dune" "runtest" "-p" name "-j" jobs] {with-test} ]
+
+
depends: [
+
"ocaml" {>= "4.08.0"}
+
"dune" {>= "2.6"}
+
"dune-configurator" {>= "2.0.0"}
+
"duration"
+
"cstruct" {>= "6.0.0"}
+
"logs"
+
"mirage-crypto" {=version}
+
"ounit2" {with-test}
+
"randomconv" {with-test & >= "0.1.3"}
+
# lwt sublibrary
+
"mtime" {>= "1.0.0"}
+
"lwt" {>= "4.0.0"}
+
]
+
conflicts: [ "mirage-runtime" {< "3.8.0"} ]
+
description: """
+
Mirage-crypto-rng provides a random number generator interface, and
+
implementations: Fortuna, HMAC-DRBG, getrandom/getentropy based (in the unix
+
sublibrary)
+
"""
+
url {
+
src:
+
"https://github.com/mirage/mirage-crypto/releases/download/v0.10.7/mirage-crypto-0.10.7.tbz"
+
checksum: [
+
"sha256=3e818a760c235c5b684c7b6b43b1cdd2a7dd04e0105b680d524f836eb988a69c"
+
"sha512=e9c3e6ac0fa3dae2dda9e91d5362ad08aaa65241b968a0c12484db4042146d6af7b46910784ce41bdd68783eede93f35a81aa37a2cd125dfc43503c78007b8b9"
+
]
+
}
+
x-commit-hash: "d3e519f93d2d9df1fb366aaf96996803518c8597"
+43
packages/mirage-crypto/mirage-crypto.0.10.7/opam
···
+
opam-version: "2.0"
+
homepage: "https://github.com/mirage/mirage-crypto"
+
dev-repo: "git+https://github.com/mirage/mirage-crypto.git"
+
bug-reports: "https://github.com/mirage/mirage-crypto/issues"
+
doc: "https://mirage.github.io/mirage-crypto/doc"
+
authors: ["David Kaloper <dk505@cam.ac.uk>" "Hannes Mehnert <hannes@mehnert.org>" ]
+
maintainer: "Hannes Mehnert <hannes@mehnert.org>"
+
license: "ISC"
+
synopsis: "Simple symmetric cryptography for the modern age"
+
+
build: [ ["dune" "subst"] {dev}
+
["dune" "build" "-p" name "-j" jobs ]
+
["dune" "runtest" "-p" name "-j" jobs] {with-test} ]
+
+
depends: [
+
"conf-pkg-config" {build}
+
"ocaml" {>= "4.08.0"}
+
"dune" {>= "2.6"}
+
"dune-configurator" {>= "2.0.0"}
+
"ounit2" {with-test}
+
"cstruct" {>="6.0.0"}
+
"eqaf" {>= "0.8"}
+
]
+
depopts: [
+
"ocaml-freestanding"
+
]
+
conflicts: [
+
"mirage-xen" {< "6.0.0"}
+
"ocaml-freestanding" {< "0.6.0"}
+
]
+
description: """
+
Mirage-crypto provides symmetric ciphers (DES, AES, RC4, ChaCha20/Poly1305), and
+
hashes (MD5, SHA-1, SHA-2).
+
"""
+
url {
+
src:
+
"https://github.com/mirage/mirage-crypto/releases/download/v0.10.7/mirage-crypto-0.10.7.tbz"
+
checksum: [
+
"sha256=3e818a760c235c5b684c7b6b43b1cdd2a7dd04e0105b680d524f836eb988a69c"
+
"sha512=e9c3e6ac0fa3dae2dda9e91d5362ad08aaa65241b968a0c12484db4042146d6af7b46910784ce41bdd68783eede93f35a81aa37a2cd125dfc43503c78007b8b9"
+
]
+
}
+
x-commit-hash: "d3e519f93d2d9df1fb366aaf96996803518c8597"