|
| 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=039482b9599c209a3774bd13bbffdf42a115d2fdc5b82c6e00d5a7068ee151e4" |
| 58 | + "sha512=74c09d7a8b480b13e17e19d6225a3289479fbd73b6e9b77411463d5729f1063b0c1f4bec72a63e5b56df2f08e24c15368c21dd6bb22a3788dc838110e27d903d" |
| 59 | + ] |
| 60 | +} |
| 61 | +x-commit-hash: "b579fc0d8cf3b8737f4368a2420b091e81820aad" |
0 commit comments