-
Notifications
You must be signed in to change notification settings - Fork 68
/
tls-eio.opam
45 lines (41 loc) · 1.77 KB
/
tls-eio.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
38
39
40
41
42
43
44
45
opam-version: "2.0"
homepage: "https://github.com/mirleft/ocaml-tls"
dev-repo: "git+https://github.com/mirleft/ocaml-tls.git"
bug-reports: "https://github.com/mirleft/ocaml-tls/issues"
doc: "https://mirleft.github.io/ocaml-tls/doc"
authors: ["Thomas Leonard"]
maintainer: ["Hannes Mehnert <[email protected]>" "David Kaloper <[email protected]>"]
license: "BSD-2-Clause"
build: [
["dune" "subst"] {dev}
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] {with-test & os != "macos"}
]
depends: [
"ocaml" {>= "5.0.0"}
"dune" {>= "3.0"}
"tls" {= version}
"mirage-crypto-rng" {>= "1.0.0"}
"mirage-crypto-rng-eio" {with-test & >= "1.0.0"}
"eio" {>= "0.12"}
"eio_main" {>= "0.12" with-test}
"mdx" {with-test}
"crowbar" {>= "0.2.1" with-test}
"logs" {>= "0.7.0" with-test}
"ptime" {>= "1.0.0"}
]
tags: [ "org:mirage"]
synopsis: "Transport Layer Security purely in OCaml - Eio"
description: """
Transport Layer Security (TLS) is probably the most widely deployed security
protocol on the Internet. It provides communication privacy to prevent
eavesdropping, tampering, and message forgery. Furthermore, it optionally
provides authentication of the involved endpoints. TLS is commonly deployed for
securing web services ([HTTPS](http://tools.ietf.org/html/rfc2818)), emails,
virtual private networks, and wireless networks.
TLS uses asymmetric cryptography to exchange a symmetric key, and optionally
authenticate (using X.509) either or both endpoints. It provides algorithmic
agility, which means that the key exchange method, symmetric encryption
algorithm, and hash algorithm are negotiated.
Read our [Usenix Security 2015 paper](https://www.usenix.org/conference/usenixsecurity15/technical-sessions/presentation/kaloper-mersinjak).
"""