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" {= "0.17.1"} 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.2/tls-0.17.2.tbz" 50 checksum: [ 51 "sha256=1f2f579acf3f6d5a17d1fabf8511853665c7b44afc47cd17d56781f5c733f154" 52 "sha512=75e31d1db89203e6b5b2450e2e63a2c76566e1bb619e4cfbd9b7e9d3db6b145334bd1ad0675ed44d3d7485295c2445db3281aed086cbffee466564095f1e7a2b" 53 ] 54} 55x-commit-hash: "1175137a29fbad550f47e0982845b826c2253e10"