Skip to content

Commit 1ee0136

Browse files
hannesmavsm
authored andcommitted
[new release] mirage-crypto (9 packages) (1.0.0)
CHANGES: ### Breaking changes * mirage-crypto: Poly1305 API now uses string (mirage/mirage-crypto#203 @hannesm) * mirage-crypto: Poly1305 no longer has type alias "type mac = string" (mirage/mirage-crypto#232 @hannesm) * mirage-crypto: the API uses string instead of cstruct (mirage/mirage-crypto#214 @reynir @hannesm) * mirage-crypto: Hash module has been removed. Use digestif if you need hash functions (mirage/mirage-crypto#213 @hannesm) * mirage-crypto: the Cipher_block and Cipher_stream modules have been removed, its contents is inlined: Mirage_crypto.Cipher_block.S -> Mirage_crypto.Block Mirage_crypto.Cipher_stream.S -> Mirage_crypto.Stream Mirage_crypto.Cipher_block.AES.CTR -> Mirage_crypto.AES.CTR (mirage/mirage-crypto#225 @hannesm, suggested in mirage/mirage-crypto#224 by @reynir) * mirage-crypto-pk: s-expression conversions for private and public keys (Dh, Dsa, Rsa) have been removed. You can use PKCS8 for encoding and decoding `X509.{Private,Public}_key.{en,de}code_{der,pem}` (mirage/mirage-crypto#208 @hannesm) * mirage-crypto-pk: in the API, Cstruct.t is no longer present. Instead, string is used (mirage/mirage-crypto#211 @reynir @hannesm) * mirage-crypto-rng: the API uses string instead of Cstruct.t. A new function `generate_into : ?g -> bytes -> ?off:int -> int -> unit` is provided (mirage/mirage-crypto#212 @hannesm @reynir) * mirage-crypto-ec: remove NIST P224 support (mirage/mirage-crypto#209 @hannesm @Firobe) * mirage-crypto: in Uncommon.xor_into the arguments ~src_off and ~dst_off are required now (mirage/mirage-crypto#232 @hannesm), renamed to unsafe_xor_into (98f01b14f5ebf98ba0e7e9c2ba97ec518f90fddc) * mirage-crypto-pk, mirage-crypto-rng: remove type alias "type bits = int" (mirage/mirage-crypto#236 @hannesm) ### Bugfixes * mirage-crypto (32 bit systems): CCM with long adata (mirage/mirage-crypto#207 @reynir) * mirage-crypto-ec: fix K_gen for bitlen mod 8 != 0 (reported in mirage/mirage-crypto#105 that P521 test vectors don't pass, re-reported mirage/mirage-crypto#228, fixed mirage/mirage-crypto#230 @Firobe) * mirage-crypto-ec: zero out bytes allocated for Field_element.zero (reported mirleft/ocaml-x509#167, fixed mirage/mirage-crypto#226 @dinosaure) ### Data race free * mirage-crypto (3DES): avoid global state in key derivation (mirage/mirage-crypto#223 @hannesm) * mirage-crypto-rng: use atomic instead of reference to be domain-safe (mirage/mirage-crypto#221 @dinosaure @reynir @hannesm) * mirage-crypto, mirage-crypto-rng, mirage-crypto-pk, mirage-crypto-ec: avoid global buffers, use freshly allocated strings/bytes instead, avoids data races (mirage/mirage-crypto#186 mirage/mirage-crypto#219 @dinosaure @reynir @hannesm) ### Other changes * mirage-crypto: add {de,en}crypt_into functions (and unsafe variants) to allow less buffer allocations (mirage/mirage-crypto#231 @hannesm) * mirage-crypto-rng-miou: new package which adds rng support with miou (mirage/mirage-crypto#227 @dinosaure) * PERFORMANCE mirage-crypto: ChaCha20/Poly1305 use string instead of Cstruct.t, ChaCha20 interface unchanged, performance improvement roughly 2x (mirage/mirage-crypto#203 @hannesm @reynir) * mirage-crypto-ec, mirage-crypto-pk, mirage-crypto-rng: use digestif for hashes (mirage/mirage-crypto#212 mirage/mirage-crypto#215 @reynir @hannesm) * mirage-crypto-rng: use a set for entropy sources instead of a list (mirage/mirage-crypto#218 @hannesm) * mirage-crypto-rng-mirage: provide a module type S (for use instead of mirage-random in mirage) (mirage/mirage-crypto#234 @hannesm)
1 parent f125cfb commit 1ee0136

File tree

9 files changed

+370
-0
lines changed
  • packages
    • mirage-crypto/mirage-crypto.1.0.0
    • mirage-crypto-ec/mirage-crypto-ec.1.0.0
    • mirage-crypto-pk/mirage-crypto-pk.1.0.0
    • mirage-crypto-rng/mirage-crypto-rng.1.0.0
    • mirage-crypto-rng-async/mirage-crypto-rng-async.1.0.0
    • mirage-crypto-rng-eio/mirage-crypto-rng-eio.1.0.0
    • mirage-crypto-rng-lwt/mirage-crypto-rng-lwt.1.0.0
    • mirage-crypto-rng-miou-unix/mirage-crypto-rng-miou-unix.1.0.0
    • mirage-crypto-rng-mirage/mirage-crypto-rng-mirage.1.0.0

9 files changed

+370
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
opam-version: "2.0"
2+
synopsis: "Elliptic Curve Cryptography with primitives taken from Fiat"
3+
description: """
4+
An implementation of key exchange (ECDH) and digital signature (ECDSA/EdDSA)
5+
algorithms using code from Fiat (<https://github.com/mit-plv/fiat-crypto>).
6+
7+
The curves P256 (SECP256R1), P384 (SECP384R1),
8+
P521 (SECP521R1), and 25519 (X25519, Ed25519) are implemented by this package.
9+
"""
10+
maintainer: "Hannes Mehnert <hannes@mehnert.org>"
11+
authors: [
12+
"Hannes Mehnert <hannes@mehnert.org>"
13+
"Nathan Rebours <nathan.p.rebours@gmail.com>"
14+
"Clément Pascutto <clement@tarides.com>"
15+
"Etienne Millon <me@emillon.org>"
16+
"Virgile Robles <virgile.robles@protonmail.ch>"
17+
# and from the fiat-crypto AUTHORS file
18+
"Andres Erbsen <andreser@mit.edu>"
19+
"Google Inc."
20+
"Jade Philipoom <jadep@mit.edu> <jade.philipoom@gmail.com>"
21+
"Massachusetts Institute of Technology"
22+
"Zoe Paraskevopoulou <zoe.paraskevopoulou@gmail.com>"
23+
]
24+
license: "MIT"
25+
homepage: "https://github.com/mirage/mirage-crypto"
26+
doc: "https://mirage.github.io/mirage-crypto/doc"
27+
bug-reports: "https://github.com/mirage/mirage-crypto/issues"
28+
depends: [
29+
"dune" {>= "2.7"}
30+
"ocaml" {>= "4.13.0"}
31+
"dune-configurator"
32+
"eqaf" {>= "0.7"}
33+
"mirage-crypto-rng" {=version}
34+
"digestif" {>= "1.2.0"}
35+
"alcotest" {with-test & >= "0.8.1"}
36+
"ppx_deriving_yojson" {with-test}
37+
"ppx_deriving" {with-test}
38+
"yojson" {with-test & >= "1.6.0"}
39+
"asn1-combinators" {with-test & >= "0.3.1"}
40+
]
41+
conflicts: [
42+
"ocaml-freestanding"
43+
]
44+
build: [
45+
["dune" "subst"] {dev}
46+
["dune" "build" "-p" name "-j" jobs]
47+
["dune" "runtest" "-p" name "-j" jobs] {with-test}
48+
]
49+
dev-repo: "git+https://github.com/mirage/mirage-crypto.git"
50+
tags: ["org:mirage"]
51+
url {
52+
src:
53+
"https://github.com/mirage/mirage-crypto/releases/download/v1.0.0/mirage-crypto-1.0.0.tbz"
54+
checksum: [
55+
"sha256=4f9b06af4f6440eee85e5645c01184ca10cd30a8127864e80fc5f206cf864769"
56+
"sha512=73855eeea482b6ba4b7e095a92af2322e97a6da67bee79ef2b3b05449d7ed522712dd11e825759e812eec21281083ef8422429a156851930078aad41215ecdfc"
57+
]
58+
}
59+
x-commit-hash: "28e9cc96492b43a994652c25ab8db4f265f51165"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
opam-version: "2.0"
2+
homepage: "https://github.com/mirage/mirage-crypto"
3+
dev-repo: "git+https://github.com/mirage/mirage-crypto.git"
4+
bug-reports: "https://github.com/mirage/mirage-crypto/issues"
5+
doc: "https://mirage.github.io/mirage-crypto/doc"
6+
authors: ["David Kaloper <dk505@cam.ac.uk>" "Hannes Mehnert <hannes@mehnert.org>" ]
7+
maintainer: "Hannes Mehnert <hannes@mehnert.org>"
8+
license: "ISC"
9+
synopsis: "Simple public-key cryptography for the modern age"
10+
11+
build: [ ["dune" "subst"] {dev}
12+
["dune" "build" "-p" name "-j" jobs ]
13+
["dune" "runtest" "-p" name "-j" jobs] {with-test} ]
14+
15+
depends: [
16+
"conf-gmp-powm-sec" {build}
17+
"ocaml" {>= "4.13.0"}
18+
"dune" {>= "2.7"}
19+
"ounit2" {with-test}
20+
"randomconv" {with-test & >= "0.2.0"}
21+
"mirage-crypto" {=version}
22+
"mirage-crypto-rng" {=version}
23+
"digestif" {>= "1.2.0"}
24+
"zarith" {>= "1.13"}
25+
"eqaf" {>= "0.8"}
26+
]
27+
conflicts: [
28+
"ocaml-freestanding"
29+
]
30+
description: """
31+
Mirage-crypto-pk provides public-key cryptography (RSA, DSA, DH).
32+
"""
33+
url {
34+
src:
35+
"https://github.com/mirage/mirage-crypto/releases/download/v1.0.0/mirage-crypto-1.0.0.tbz"
36+
checksum: [
37+
"sha256=4f9b06af4f6440eee85e5645c01184ca10cd30a8127864e80fc5f206cf864769"
38+
"sha512=73855eeea482b6ba4b7e095a92af2322e97a6da67bee79ef2b3b05449d7ed522712dd11e825759e812eec21281083ef8422429a156851930078aad41215ecdfc"
39+
]
40+
}
41+
x-commit-hash: "28e9cc96492b43a994652c25ab8db4f265f51165"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
opam-version: "2.0"
2+
homepage: "https://github.com/mirage/mirage-crypto"
3+
dev-repo: "git+https://github.com/mirage/mirage-crypto.git"
4+
bug-reports: "https://github.com/mirage/mirage-crypto/issues"
5+
doc: "https://mirage.github.io/mirage-crypto/doc"
6+
authors: ["David Kaloper <dk505@cam.ac.uk>" "Hannes Mehnert <hannes@mehnert.org>" ]
7+
maintainer: "Hannes Mehnert <hannes@mehnert.org>"
8+
license: "ISC"
9+
synopsis: "Feed the entropy source in an Async-friendly way"
10+
11+
build: [ ["dune" "subst"] {dev}
12+
["dune" "build" "-p" name "-j" jobs ]
13+
["dune" "runtest" "-p" name "-j" jobs] {with-test} ]
14+
15+
depends: [
16+
"ocaml" {>= "4.13.0"}
17+
"dune" {>= "2.7"}
18+
"dune-configurator" {>= "2.0.0"}
19+
"async" {>= "v0.14"}
20+
"logs"
21+
"mirage-crypto-rng" {=version}
22+
"ohex" {with-test & >= "0.2.0"}
23+
]
24+
available: os != "win32"
25+
description: """
26+
27+
Mirage-crypto-rng-async feeds the entropy source for Mirage_crypto_rng-based
28+
random number generator implementations, in an Async-friendly way.
29+
"""
30+
url {
31+
src:
32+
"https://github.com/mirage/mirage-crypto/releases/download/v1.0.0/mirage-crypto-1.0.0.tbz"
33+
checksum: [
34+
"sha256=4f9b06af4f6440eee85e5645c01184ca10cd30a8127864e80fc5f206cf864769"
35+
"sha512=73855eeea482b6ba4b7e095a92af2322e97a6da67bee79ef2b3b05449d7ed522712dd11e825759e812eec21281083ef8422429a156851930078aad41215ecdfc"
36+
]
37+
}
38+
x-commit-hash: "28e9cc96492b43a994652c25ab8db4f265f51165"
39+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
opam-version: "2.0"
2+
homepage: "https://github.com/mirage/mirage-crypto"
3+
dev-repo: "git+https://github.com/mirage/mirage-crypto.git"
4+
bug-reports: "https://github.com/mirage/mirage-crypto/issues"
5+
doc: "https://mirage.github.io/mirage-crypto/doc"
6+
authors: ["Bikal Gurung <gbikal@gmail.com>" ]
7+
maintainer: "Bikal Gurung <gbikal@gmail.com>"
8+
license: "ISC"
9+
synopsis: "Feed the entropy source in an eio-friendly way"
10+
11+
build: [ ["dune" "subst"] {dev}
12+
["dune" "build" "-p" name "-j" jobs ]
13+
["dune" "runtest" "-p" name "-j" jobs] {with-test} ]
14+
15+
depends: [
16+
"ocaml" {>= "5.0.0"}
17+
"dune" {>= "2.7"}
18+
"eio" {>= "0.12"}
19+
"logs"
20+
"mirage-crypto-rng" {=version}
21+
"duration"
22+
"mtime"
23+
"eio_main" {with-test}
24+
"ohex" {with-test & >= "0.2.0"}
25+
]
26+
description: """
27+
Mirage-crypto-rng-eio feeds the entropy source for Mirage_crypto_rng-based
28+
random number generator implementations, in an eio-friendly way.
29+
"""
30+
url {
31+
src:
32+
"https://github.com/mirage/mirage-crypto/releases/download/v1.0.0/mirage-crypto-1.0.0.tbz"
33+
checksum: [
34+
"sha256=4f9b06af4f6440eee85e5645c01184ca10cd30a8127864e80fc5f206cf864769"
35+
"sha512=73855eeea482b6ba4b7e095a92af2322e97a6da67bee79ef2b3b05449d7ed522712dd11e825759e812eec21281083ef8422429a156851930078aad41215ecdfc"
36+
]
37+
}
38+
x-commit-hash: "28e9cc96492b43a994652c25ab8db4f265f51165"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
opam-version: "2.0"
2+
homepage: "https://github.com/mirage/mirage-crypto"
3+
dev-repo: "git+https://github.com/mirage/mirage-crypto.git"
4+
bug-reports: "https://github.com/mirage/mirage-crypto/issues"
5+
doc: "https://mirage.github.io/mirage-crypto/doc"
6+
authors: ["David Kaloper <dk505@cam.ac.uk>" "Hannes Mehnert <hannes@mehnert.org>" ]
7+
maintainer: "Hannes Mehnert <hannes@mehnert.org>"
8+
license: "ISC"
9+
synopsis: "A cryptographically secure PRNG"
10+
11+
build: [ ["dune" "subst"] {dev}
12+
["dune" "build" "-p" name "-j" jobs ]
13+
["dune" "runtest" "-p" name "-j" jobs] {with-test} ]
14+
15+
depends: [
16+
"ocaml" {>= "4.13.0"}
17+
"dune" {>= "2.7"}
18+
"duration"
19+
"logs"
20+
"mirage-crypto-rng" {=version}
21+
"mtime" {>= "1.0.0"}
22+
"lwt" {>= "4.0.0"}
23+
]
24+
description: """
25+
Mirage-crypto-rng-lwt provides entropy collection code for the RNG using Lwt.
26+
"""
27+
url {
28+
src:
29+
"https://github.com/mirage/mirage-crypto/releases/download/v1.0.0/mirage-crypto-1.0.0.tbz"
30+
checksum: [
31+
"sha256=4f9b06af4f6440eee85e5645c01184ca10cd30a8127864e80fc5f206cf864769"
32+
"sha512=73855eeea482b6ba4b7e095a92af2322e97a6da67bee79ef2b3b05449d7ed522712dd11e825759e812eec21281083ef8422429a156851930078aad41215ecdfc"
33+
]
34+
}
35+
x-commit-hash: "28e9cc96492b43a994652c25ab8db4f265f51165"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
opam-version: "2.0"
2+
homepage: "https://github.com/mirage/mirage-crypto"
3+
dev-repo: "git+https://github.com/mirage/mirage-crypto.git"
4+
bug-reports: "https://github.com/mirage/mirage-crypto/issues"
5+
doc: "https://mirage.github.io/mirage-crypto/doc"
6+
authors: ["Romain Calascibetta <romain.calascibetta@gmail.com>" ]
7+
maintainer: "Romain Calascibetta <romain.calascibetta@gmail.com>"
8+
license: "ISC"
9+
synopsis: "Feed the entropy source in an miou.unix-friendly way"
10+
11+
build: [ ["dune" "subst"] {dev}
12+
["dune" "build" "-p" name "-j" jobs ]
13+
["dune" "runtest" "-p" name "-j" jobs] {with-test} ]
14+
15+
depends: [
16+
"ocaml" {>= "5.0.0"}
17+
"dune" {>= "2.7"}
18+
"miou" {>= "0.2.0"}
19+
"logs"
20+
"mirage-crypto-rng" {=version}
21+
"duration"
22+
"mtime"
23+
"digestif" {>= "1.2.0"}
24+
"ohex" {with-test & >= "0.2.0"}
25+
]
26+
description: """
27+
Mirage-crypto-rng-miou-unix feeds the entropy source for Mirage_crypto_rng-based
28+
random number generator implementations, in an miou.unix-friendly way.
29+
"""
30+
url {
31+
src:
32+
"https://github.com/mirage/mirage-crypto/releases/download/v1.0.0/mirage-crypto-1.0.0.tbz"
33+
checksum: [
34+
"sha256=4f9b06af4f6440eee85e5645c01184ca10cd30a8127864e80fc5f206cf864769"
35+
"sha512=73855eeea482b6ba4b7e095a92af2322e97a6da67bee79ef2b3b05449d7ed522712dd11e825759e812eec21281083ef8422429a156851930078aad41215ecdfc"
36+
]
37+
}
38+
x-commit-hash: "28e9cc96492b43a994652c25ab8db4f265f51165"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
opam-version: "2.0"
2+
homepage: "https://github.com/mirage/mirage-crypto"
3+
dev-repo: "git+https://github.com/mirage/mirage-crypto.git"
4+
bug-reports: "https://github.com/mirage/mirage-crypto/issues"
5+
doc: "https://mirage.github.io/mirage-crypto/doc"
6+
authors: ["David Kaloper <dk505@cam.ac.uk>" "Hannes Mehnert <hannes@mehnert.org>" ]
7+
maintainer: "Hannes Mehnert <hannes@mehnert.org>"
8+
license: "BSD-2-Clause"
9+
synopsis: "Entropy collection for a cryptographically secure PRNG"
10+
11+
build: [ ["dune" "subst"] {dev}
12+
["dune" "build" "-p" name "-j" jobs ]
13+
["dune" "runtest" "-p" name "-j" jobs] {with-test} ]
14+
15+
depends: [
16+
"ocaml" {>= "4.13.0"}
17+
"dune" {>= "2.7"}
18+
"mirage-crypto-rng" {=version}
19+
"duration"
20+
"logs"
21+
"lwt" {>= "4.0.0"}
22+
"mirage-runtime" {>= "3.8.0"}
23+
"mirage-time" {>= "2.0.0"}
24+
"mirage-clock" {>= "3.0.0"}
25+
"mirage-unix" {with-test & >= "5.0.0"}
26+
"mirage-time-unix" {with-test & >= "2.0.0"}
27+
"mirage-clock-unix" {with-test & >= "3.0.0"}
28+
"ohex" {with-test & >= "0.2.0"}
29+
]
30+
description: """
31+
Mirage-crypto-rng-mirage provides entropy collection code for the RNG.
32+
"""
33+
url {
34+
src:
35+
"https://github.com/mirage/mirage-crypto/releases/download/v1.0.0/mirage-crypto-1.0.0.tbz"
36+
checksum: [
37+
"sha256=4f9b06af4f6440eee85e5645c01184ca10cd30a8127864e80fc5f206cf864769"
38+
"sha512=73855eeea482b6ba4b7e095a92af2322e97a6da67bee79ef2b3b05449d7ed522712dd11e825759e812eec21281083ef8422429a156851930078aad41215ecdfc"
39+
]
40+
}
41+
x-commit-hash: "28e9cc96492b43a994652c25ab8db4f265f51165"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
opam-version: "2.0"
2+
homepage: "https://github.com/mirage/mirage-crypto"
3+
dev-repo: "git+https://github.com/mirage/mirage-crypto.git"
4+
bug-reports: "https://github.com/mirage/mirage-crypto/issues"
5+
doc: "https://mirage.github.io/mirage-crypto/doc"
6+
authors: ["David Kaloper <dk505@cam.ac.uk>" "Hannes Mehnert <hannes@mehnert.org>" ]
7+
maintainer: "Hannes Mehnert <hannes@mehnert.org>"
8+
license: "ISC"
9+
synopsis: "A cryptographically secure PRNG"
10+
11+
build: [ ["dune" "subst"] {dev}
12+
["dune" "build" "-p" name "-j" jobs ]
13+
["dune" "runtest" "-p" name "-j" jobs] {with-test} ]
14+
15+
depends: [
16+
"ocaml" {>= "4.13.0"}
17+
"dune" {>= "2.7"}
18+
"dune-configurator" {>= "2.0.0"}
19+
"duration"
20+
"logs"
21+
"mirage-crypto" {=version}
22+
"digestif" {>= "1.1.4"}
23+
"ounit2" {with-test}
24+
"randomconv" {with-test & >= "0.2.0"}
25+
"ohex" {with-test & >= "0.2.0"}
26+
]
27+
conflicts: [ "mirage-runtime" {< "3.8.0"} ]
28+
description: """
29+
Mirage-crypto-rng provides a random number generator interface, and
30+
implementations: Fortuna, HMAC-DRBG, getrandom/getentropy based (in the unix
31+
sublibrary)
32+
"""
33+
url {
34+
src:
35+
"https://github.com/mirage/mirage-crypto/releases/download/v1.0.0/mirage-crypto-1.0.0.tbz"
36+
checksum: [
37+
"sha256=4f9b06af4f6440eee85e5645c01184ca10cd30a8127864e80fc5f206cf864769"
38+
"sha512=73855eeea482b6ba4b7e095a92af2322e97a6da67bee79ef2b3b05449d7ed522712dd11e825759e812eec21281083ef8422429a156851930078aad41215ecdfc"
39+
]
40+
}
41+
x-commit-hash: "28e9cc96492b43a994652c25ab8db4f265f51165"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
opam-version: "2.0"
2+
homepage: "https://github.com/mirage/mirage-crypto"
3+
dev-repo: "git+https://github.com/mirage/mirage-crypto.git"
4+
bug-reports: "https://github.com/mirage/mirage-crypto/issues"
5+
doc: "https://mirage.github.io/mirage-crypto/doc"
6+
authors: ["David Kaloper <dk505@cam.ac.uk>" "Hannes Mehnert <hannes@mehnert.org>" ]
7+
maintainer: "Hannes Mehnert <hannes@mehnert.org>"
8+
license: "ISC"
9+
synopsis: "Simple symmetric cryptography for the modern age"
10+
11+
build: [ ["dune" "subst"] {dev}
12+
["dune" "build" "-p" name "-j" jobs ]
13+
["dune" "runtest" "-p" name "-j" jobs] {with-test} ]
14+
15+
depends: [
16+
"ocaml" {>= "4.13.0"}
17+
"dune" {>= "2.7"}
18+
"dune-configurator" {>= "2.0.0"}
19+
"ounit2" {with-test}
20+
"ohex" {with-test & >= "0.2.0"}
21+
"eqaf" {>= "0.8"}
22+
]
23+
conflicts: [
24+
"ocaml-freestanding"
25+
"result" {< "1.5"}
26+
]
27+
description: """
28+
Mirage-crypto provides symmetric ciphers (DES, AES, RC4, ChaCha20/Poly1305).
29+
"""
30+
url {
31+
src:
32+
"https://github.com/mirage/mirage-crypto/releases/download/v1.0.0/mirage-crypto-1.0.0.tbz"
33+
checksum: [
34+
"sha256=4f9b06af4f6440eee85e5645c01184ca10cd30a8127864e80fc5f206cf864769"
35+
"sha512=73855eeea482b6ba4b7e095a92af2322e97a6da67bee79ef2b3b05449d7ed522712dd11e825759e812eec21281083ef8422429a156851930078aad41215ecdfc"
36+
]
37+
}
38+
x-commit-hash: "28e9cc96492b43a994652c25ab8db4f265f51165"

0 commit comments

Comments
 (0)