diff --git a/packages/mirage-crypto-ec/mirage-crypto-ec.0.11.2/opam b/packages/mirage-crypto-ec/mirage-crypto-ec.0.11.2/opam new file mode 100644 index 00000000000..4c14f2f7fbb --- /dev/null +++ b/packages/mirage-crypto-ec/mirage-crypto-ec.0.11.2/opam @@ -0,0 +1,61 @@ +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 (). + +The curves P224 (SECP224R1), P256 (SECP256R1), P384 (SECP384R1), +P521 (SECP521R1), and 25519 (X25519, Ed25519) are implemented by this package. +""" +maintainer: "Hannes Mehnert " +authors: [ + "Hannes Mehnert " + "Nathan Rebours " + "Clément Pascutto " + "Etienne Millon " +# and from the fiat-crypto AUTHORS file + "Andres Erbsen " + "Google Inc." + "Jade Philipoom " + "Massachusetts Institute of Technology" + "Zoe Paraskevopoulou " +] +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: [ + "dune" {>= "2.7"} + "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 & >= "0.8.1"} + "asn1-combinators" {with-test & >= "0.2.5"} + "ppx_deriving_yojson" {with-test} + "ppx_deriving" {with-test} + "yojson" {with-test & >= "1.6.0"} +] +conflicts: [ + "ocaml-freestanding" +] +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.11.2/mirage-crypto-0.11.2.tbz" + checksum: [ + "sha256=d6b97cb7f0dc344a602513cc03137c1e7f0ae105d0721614626cf4f231edf764" + "sha512=7ab8824730d09bfb4c82a290860e96c8a722456084806741c773ab8d30c983d2061a3f79484debf5fa9bd1c75a0738bd8913b0539743e61245ad172844572b9e" + ] +} +x-commit-hash: "586874a3d51fbe149e7ff17658d9532f3cf5d4d3" diff --git a/packages/mirage-crypto-pk/mirage-crypto-pk.0.11.2/opam b/packages/mirage-crypto-pk/mirage-crypto-pk.0.11.2/opam new file mode 100644 index 00000000000..0b682ef93da --- /dev/null +++ b/packages/mirage-crypto-pk/mirage-crypto-pk.0.11.2/opam @@ -0,0 +1,42 @@ +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 " "Hannes Mehnert " ] +maintainer: "Hannes Mehnert " +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.7"} + "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"} +] +conflicts: [ + "ocaml-freestanding" +] +description: """ +Mirage-crypto-pk provides public-key cryptography (RSA, DSA, DH). +""" +url { + src: + "https://github.com/mirage/mirage-crypto/releases/download/v0.11.2/mirage-crypto-0.11.2.tbz" + checksum: [ + "sha256=d6b97cb7f0dc344a602513cc03137c1e7f0ae105d0721614626cf4f231edf764" + "sha512=7ab8824730d09bfb4c82a290860e96c8a722456084806741c773ab8d30c983d2061a3f79484debf5fa9bd1c75a0738bd8913b0539743e61245ad172844572b9e" + ] +} +x-commit-hash: "586874a3d51fbe149e7ff17658d9532f3cf5d4d3" diff --git a/packages/mirage-crypto-rng-async/mirage-crypto-rng-async.0.11.2/opam b/packages/mirage-crypto-rng-async/mirage-crypto-rng-async.0.11.2/opam new file mode 100644 index 00000000000..59f79ea5dce --- /dev/null +++ b/packages/mirage-crypto-rng-async/mirage-crypto-rng-async.0.11.2/opam @@ -0,0 +1,39 @@ +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 " "Hannes Mehnert " ] +maintainer: "Hannes Mehnert " +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.7"} + "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.11.2/mirage-crypto-0.11.2.tbz" + checksum: [ + "sha256=d6b97cb7f0dc344a602513cc03137c1e7f0ae105d0721614626cf4f231edf764" + "sha512=7ab8824730d09bfb4c82a290860e96c8a722456084806741c773ab8d30c983d2061a3f79484debf5fa9bd1c75a0738bd8913b0539743e61245ad172844572b9e" + ] +} +x-commit-hash: "586874a3d51fbe149e7ff17658d9532f3cf5d4d3" + diff --git a/packages/mirage-crypto-rng-eio/mirage-crypto-rng-eio.0.11.2/opam b/packages/mirage-crypto-rng-eio/mirage-crypto-rng-eio.0.11.2/opam new file mode 100644 index 00000000000..b294d873f64 --- /dev/null +++ b/packages/mirage-crypto-rng-eio/mirage-crypto-rng-eio.0.11.2/opam @@ -0,0 +1,38 @@ +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 " ] +maintainer: "Bikal Gurung " +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: [ + "ocaml" {>= "5.0.0"} + "dune" {>= "2.7"} + "eio" {>= "0.12"} + "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.11.2/mirage-crypto-0.11.2.tbz" + checksum: [ + "sha256=d6b97cb7f0dc344a602513cc03137c1e7f0ae105d0721614626cf4f231edf764" + "sha512=7ab8824730d09bfb4c82a290860e96c8a722456084806741c773ab8d30c983d2061a3f79484debf5fa9bd1c75a0738bd8913b0539743e61245ad172844572b9e" + ] +} +x-commit-hash: "586874a3d51fbe149e7ff17658d9532f3cf5d4d3" diff --git a/packages/mirage-crypto-rng-lwt/mirage-crypto-rng-lwt.0.11.2/opam b/packages/mirage-crypto-rng-lwt/mirage-crypto-rng-lwt.0.11.2/opam new file mode 100644 index 00000000000..38142d3003b --- /dev/null +++ b/packages/mirage-crypto-rng-lwt/mirage-crypto-rng-lwt.0.11.2/opam @@ -0,0 +1,36 @@ +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 " "Hannes Mehnert " ] +maintainer: "Hannes Mehnert " +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.7"} + "duration" + "logs" + "mirage-crypto" {=version} + "mirage-crypto-rng" {=version} + "mtime" {>= "1.0.0"} + "lwt" {>= "4.0.0"} +] +description: """ +Mirage-crypto-rng-lwt provides entropy collection code for the RNG using Lwt. +""" +url { + src: + "https://github.com/mirage/mirage-crypto/releases/download/v0.11.2/mirage-crypto-0.11.2.tbz" + checksum: [ + "sha256=d6b97cb7f0dc344a602513cc03137c1e7f0ae105d0721614626cf4f231edf764" + "sha512=7ab8824730d09bfb4c82a290860e96c8a722456084806741c773ab8d30c983d2061a3f79484debf5fa9bd1c75a0738bd8913b0539743e61245ad172844572b9e" + ] +} +x-commit-hash: "586874a3d51fbe149e7ff17658d9532f3cf5d4d3" diff --git a/packages/mirage-crypto-rng-mirage/mirage-crypto-rng-mirage.0.11.2/opam b/packages/mirage-crypto-rng-mirage/mirage-crypto-rng-mirage.0.11.2/opam new file mode 100644 index 00000000000..320ae632c00 --- /dev/null +++ b/packages/mirage-crypto-rng-mirage/mirage-crypto-rng-mirage.0.11.2/opam @@ -0,0 +1,41 @@ +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 " "Hannes Mehnert " ] +maintainer: "Hannes Mehnert " +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.7"} + "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.11.2/mirage-crypto-0.11.2.tbz" + checksum: [ + "sha256=d6b97cb7f0dc344a602513cc03137c1e7f0ae105d0721614626cf4f231edf764" + "sha512=7ab8824730d09bfb4c82a290860e96c8a722456084806741c773ab8d30c983d2061a3f79484debf5fa9bd1c75a0738bd8913b0539743e61245ad172844572b9e" + ] +} +x-commit-hash: "586874a3d51fbe149e7ff17658d9532f3cf5d4d3" diff --git a/packages/mirage-crypto-rng/mirage-crypto-rng.0.11.2/opam b/packages/mirage-crypto-rng/mirage-crypto-rng.0.11.2/opam new file mode 100644 index 00000000000..d6719533d1c --- /dev/null +++ b/packages/mirage-crypto-rng/mirage-crypto-rng.0.11.2/opam @@ -0,0 +1,40 @@ +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 " "Hannes Mehnert " ] +maintainer: "Hannes Mehnert " +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.7"} + "dune-configurator" {>= "2.0.0"} + "duration" + "cstruct" {>= "6.0.0"} + "logs" + "mirage-crypto" {=version} + "ounit2" {with-test} + "randomconv" {with-test & >= "0.1.3"} +] +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.11.2/mirage-crypto-0.11.2.tbz" + checksum: [ + "sha256=d6b97cb7f0dc344a602513cc03137c1e7f0ae105d0721614626cf4f231edf764" + "sha512=7ab8824730d09bfb4c82a290860e96c8a722456084806741c773ab8d30c983d2061a3f79484debf5fa9bd1c75a0738bd8913b0539743e61245ad172844572b9e" + ] +} +x-commit-hash: "586874a3d51fbe149e7ff17658d9532f3cf5d4d3" diff --git a/packages/mirage-crypto/mirage-crypto.0.11.2/opam b/packages/mirage-crypto/mirage-crypto.0.11.2/opam new file mode 100644 index 00000000000..a889d7440f1 --- /dev/null +++ b/packages/mirage-crypto/mirage-crypto.0.11.2/opam @@ -0,0 +1,38 @@ +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 " "Hannes Mehnert " ] +maintainer: "Hannes Mehnert " +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: [ + "ocaml" {>= "4.08.0"} + "dune" {>= "2.7"} + "dune-configurator" {>= "2.0.0"} + "ounit2" {with-test} + "cstruct" {>="6.0.0"} + "eqaf" {>= "0.8"} +] +conflicts: [ + "ocaml-freestanding" +] +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.11.2/mirage-crypto-0.11.2.tbz" + checksum: [ + "sha256=d6b97cb7f0dc344a602513cc03137c1e7f0ae105d0721614626cf4f231edf764" + "sha512=7ab8824730d09bfb4c82a290860e96c8a722456084806741c773ab8d30c983d2061a3f79484debf5fa9bd1c75a0738bd8913b0539743e61245ad172844572b9e" + ] +} +x-commit-hash: "586874a3d51fbe149e7ff17658d9532f3cf5d4d3"