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