-
Notifications
You must be signed in to change notification settings - Fork 0
/
dirsp-proscript-mirage.opam
37 lines (36 loc) · 1.41 KB
/
dirsp-proscript-mirage.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
opam-version: "2.0"
version: "0.1.1"
synopsis:
"Mirage crypto backed implementation of the ProScript Cryptography Library"
description: """\
Dirsp is a short form for Diskuv Implementations of Research Security Protocols.
The [dirsp-proscript-mirage] library is an implementation based on
mirage-crypto / mirage-crypto-rng / mirage-crypto-ecc of the
ProScript Cryptography Library. ProScript is a subset of JavaScript that can be
verified with formal security proofs.
The implementation comes with tests: an overlapping-pairs-sparse-occupancy test
for randomness, wycheproof test vectors for DH25519 (aka X25519) and RFC 8032
test vectors for EDH25519 (aka Ed25519)."""
maintainer: "[email protected]"
authors:
"[Diskuv, Inc. <[email protected]>]"
license: "Apache-2.0"
tags: "org:diskuv"
homepage: "https://github.com/diskuv/dirsp-exchange"
bug-reports: "https://github.com/diskuv/dirsp-exchange/issues"
depends: [
"ocaml" {>= "4.08.0"}
"dune" {>= "2.6.0"}
"dirsp-proscript" {= version}
"mirage-crypto-rng" {>= "0.11.0"}
"mirage-crypto-ec" {>= "0.10.0"}
"ppx_deriving_protobuf" {>= "2.7"}
"alcotest" {>= "1.4.0" & with-test}
"iter" {>= "1.2.1" & with-test}
]
build: [
["dune" "subst"] {dev}
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] {with-test}
]
dev-repo: "git+https://github.com/diskuv/dirsp-exchange.git"