package tls-lwt

  1. Overview
  2. Docs
Transport Layer Security purely in OCaml, Lwt layer

Install

Dune Dependency

Authors

Maintainers

Sources

tls-2.0.1.tbz
sha256=6bab8da3ad528d3f312d7b4ee21da4c59c34a91ae3e5cf4234715ab9a1820ead
sha512=ab9e4b03c0f9156ee990d5450f14906834ffd7fd65117ed46ed826cf3202dbf61094fc0af5b728ef65862423fbfa3b95cdf0f9db5dcfc1433ea2d1ea52cd360f

doc/README.html

TLS - Transport Layer Security purely in OCaml

v2.0.1

Transport Layer Security (TLS) is probably the most widely deployed security protocol on the Internet. It provides communication privacy to prevent eavesdropping, tampering, and message forgery. Furthermore, it optionally provides authentication of the involved endpoints. TLS is commonly deployed for securing web services (HTTPS), emails, virtual private networks, and wireless networks.

TLS uses asymmetric cryptography to exchange a symmetric key, and optionally authenticate (using X.509) either or both endpoints. It provides algorithmic agility, which means that the key exchange method, symmetric encryption algorithm, and hash algorithm are negotiated.

Read our Usenix Security 2015 paper for further details.

Documentation

API documentation

Installation

opam install tls will install this library.

You can also build this locally by conducting the steps:

opam install --deps-only -t . # or a named package instead of `.` - i.e. ./tls-lwt.opam
dune build --profile=release # you can also put a package list here, i.e. tls,tls-lwt -- you can also use `@all` target to compile examples as well
OCaml

Innovation. Community. Security.