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