this repo has no description
1opam-version: "2.0"
2homepage: "https://github.com/mirleft/ocaml-tls"
3dev-repo: "git+https://github.com/mirleft/ocaml-tls.git"
4bug-reports: "https://github.com/mirleft/ocaml-tls/issues"
5doc: "https://mirleft.github.io/ocaml-tls/doc"
6authors: ["Thomas Leonard"]
7maintainer: ["Hannes Mehnert <hannes@mehnert.org>" "David Kaloper <david@numm.org>"]
8license: "BSD-2-Clause"
9
10build: [
11 ["dune" "subst"] {dev}
12 ["dune" "build" "-p" name "-j" jobs]
13 ["dune" "runtest" "-p" name "-j" jobs] {with-test & os != "macos"}
14]
15
16depends: [
17 "ocaml" {>= "5.0.0"}
18 "dune" {>= "3.0"}
19 "tls" {= version}
20 "mirage-crypto-rng" {>= "1.0.0"}
21 "mirage-crypto-rng-eio" {with-test & >= "1.0.0" & < "1.2.0"}
22 "eio" {>= "0.12"}
23 "eio_main" {>= "0.12" & with-test}
24 "mdx" {with-test}
25 "crowbar" {>= "0.2.1" & with-test}
26 "logs" {>= "0.7.0" & with-test}
27 "ptime" {>= "1.0.0"}
28]
29tags: [ "org:mirage"]
30synopsis: "Transport Layer Security purely in OCaml - Eio"
31description: """
32Transport Layer Security (TLS) is probably the most widely deployed security
33protocol on the Internet. It provides communication privacy to prevent
34eavesdropping, tampering, and message forgery. Furthermore, it optionally
35provides authentication of the involved endpoints. TLS is commonly deployed for
36securing web services ([HTTPS](http://tools.ietf.org/html/rfc2818)), emails,
37virtual private networks, and wireless networks.
38
39TLS uses asymmetric cryptography to exchange a symmetric key, and optionally
40authenticate (using X.509) either or both endpoints. It provides algorithmic
41agility, which means that the key exchange method, symmetric encryption
42algorithm, and hash algorithm are negotiated.
43
44Read our [Usenix Security 2015 paper](https://www.usenix.org/conference/usenixsecurity15/technical-sessions/presentation/kaloper-mersinjak).
45"""
46url {
47 src:
48 "https://github.com/mirleft/ocaml-tls/releases/download/v1.0.2/tls-1.0.2.tbz"
49 checksum: [
50 "sha256=a21751200cb3146ffe1547f5d6de187b5147e8ee6bed12b09d52c002d42b3feb"
51 "sha512=20f74cd724c84dead81c5a124db7b65519a8e23b7305bb7cc7cd1ebb7648ac262ef72534af931e55a10ad2ba75a7541244b8feabad6834c20061e435aaf7af16"
52 ]
53}
54x-commit-hash: "75cb3b6db90c871756d237aff174e3ebce93291d"