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" {>= "0.8.0" & < "1.0.0"}
21 "mirage-crypto-rng-eio" {with-test & >= "0.8.0" & < "1.0.0"}
22 "x509" {>= "0.15.0"}
23 "eio" {>= "0.7" & < "0.12"}
24 "eio_main" {>= "0.7" & with-test}
25 "mdx" {with-test}
26 "crowbar" {>= "0.2.1" & with-test}
27]
28tags: [ "org:mirage"]
29synopsis: "Transport Layer Security purely in OCaml - Eio"
30description: """
31Transport Layer Security (TLS) is probably the most widely deployed security
32protocol on the Internet. It provides communication privacy to prevent
33eavesdropping, tampering, and message forgery. Furthermore, it optionally
34provides authentication of the involved endpoints. TLS is commonly deployed for
35securing web services ([HTTPS](http://tools.ietf.org/html/rfc2818)), emails,
36virtual private networks, and wireless networks.
37
38TLS uses asymmetric cryptography to exchange a symmetric key, and optionally
39authenticate (using X.509) either or both endpoints. It provides algorithmic
40agility, which means that the key exchange method, symmetric encryption
41algorithm, and hash algorithm are negotiated.
42
43Read our [Usenix Security 2015 paper](https://www.usenix.org/conference/usenixsecurity15/technical-sessions/presentation/kaloper-mersinjak).
44"""
45url {
46 src:
47 "https://github.com/mirleft/ocaml-tls/releases/download/v0.17.0/tls-0.17.0.tbz"
48 checksum: [
49 "sha256=fa45e8f0b76a58c417d99a65743f72f5c75a8fac6fac961e93277ebeed9df47a"
50 "sha512=64dbcbb254486396c3981ae5098a41fcb2cf0beb23236ce399ca5835a3565cb1008706e1a3b08903884038db2dcd46113cf6a62d2c44af584153301e25f6b2a8"
51 ]
52}
53x-commit-hash: "7c3fda0b4321450f48c7b42f64781de16dea0358"