|
| 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" |
0 commit comments