|
| 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 P224 (SECP224R1), P256 (SECP256R1), P384 (SECP384R1), |
| 8 | +P521 (SECP521R1), and 25519 (X25519, Ed25519) are implemented by this package. |
| 9 | +""" |
| 10 | +maintainer: "Hannes Mehnert < [email protected]>" |
| 11 | +authors: [ |
| 12 | + "Hannes Mehnert < [email protected]>" |
| 13 | + "Nathan Rebours < [email protected]>" |
| 14 | + "Clément Pascutto < [email protected]>" |
| 15 | + "Etienne Millon < [email protected]>" |
| 16 | +# and from the fiat-crypto AUTHORS file |
| 17 | + "Andres Erbsen < [email protected]>" |
| 18 | + "Google Inc." |
| 19 | + |
| 20 | + "Massachusetts Institute of Technology" |
| 21 | + "Zoe Paraskevopoulou < [email protected]>" |
| 22 | +] |
| 23 | +license: "MIT" |
| 24 | +homepage: "https://github.com/mirage/mirage-crypto" |
| 25 | +doc: "https://mirage.github.io/mirage-crypto/doc" |
| 26 | +bug-reports: "https://github.com/mirage/mirage-crypto/issues" |
| 27 | +depends: [ |
| 28 | + "dune" {>= "2.7"} |
| 29 | + "ocaml" {>= "4.08.0"} |
| 30 | + "cstruct" {>= "6.0.0"} |
| 31 | + "dune-configurator" |
| 32 | + "eqaf" {>= "0.7"} |
| 33 | + "mirage-crypto" {=version} |
| 34 | + "mirage-crypto-rng" {=version} |
| 35 | + "mirage-crypto-pk" {with-test & =version} |
| 36 | + "hex" {with-test} |
| 37 | + "alcotest" {with-test & >= "0.8.1"} |
| 38 | + "asn1-combinators" {with-test & >= "0.2.5"} |
| 39 | + "ppx_deriving_yojson" {with-test} |
| 40 | + "ppx_deriving" {with-test} |
| 41 | + "yojson" {with-test & >= "1.6.0"} |
| 42 | +] |
| 43 | +conflicts: [ |
| 44 | + "ocaml-freestanding" |
| 45 | +] |
| 46 | +build: [ |
| 47 | + ["dune" "subst"] {dev} |
| 48 | + ["dune" "build" "-p" name "-j" jobs] |
| 49 | + ["dune" "runtest" "-p" name "-j" jobs] {with-test} |
| 50 | +] |
| 51 | +dev-repo: "git+https://github.com/mirage/mirage-crypto.git" |
| 52 | +tags: ["org:mirage"] |
| 53 | +url { |
| 54 | + src: |
| 55 | + "https://github.com/mirage/mirage-crypto/releases/download/v0.11.0/mirage-crypto-0.11.0.tbz" |
| 56 | + checksum: [ |
| 57 | + "sha256=926fed6d6729fd91c82c78d61825bb5e202e8242c2b8e65668e95094cffd4e0c" |
| 58 | + "sha512=0a3b69839a03be86e6b1178568ea05f1e391325281cddea5f9f3a72faf097777ebc071b6fd991ae35549f3d48c6b2f1b91cf549f2eab41b9b72cd4aa5d636152" |
| 59 | + ] |
| 60 | +} |
| 61 | +x-commit-hash: "f6cc4898b0f24a5486c5aacd1ad583d532a58257" |
0 commit comments