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.0/tls-1.0.0.tbz" 49 checksum: [ 50 "sha256=465c4a5c62f868025cd48fd09b2cbef8cf378d996386c09de1535be8407405a5" 51 "sha512=6ee0400f93d1294f44e68f7641a8fe95818aefabea41bb39cb384d4639d9023e2f0e82a75328ae603c575593ff154318d100de4e9d0951afc86e611002b3080e" 52 ] 53} 54x-commit-hash: "95a90b6906a5a3f0c49de9d23ce9b7089db48ada"