package tls-lwt

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

Install

Dune Dependency

Authors

Maintainers

Sources

tls-0.17.5.tbz
sha256=89108857bf3a6f85722925a8d4a3f59c291d638c0f2e2fc45f0fdaf892ae4819
sha512=cd862d74ad20bb419896b50a7fc754b52d4cb29f996e396be216926205f6d7b24dda1cffcd0c81bc3bc2837da53451459a595d5132032fe1460a6776d893eff9

Description

Tls-lwt provides an effectful Tls_lwt module to be used with Lwt.

Tags

org:mirage

Published: 15 May 2024

README

TLS - Transport Layer Security purely in OCaml

v0.17.5

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 further and our Usenix Security 2015 paper.

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

Dependencies (8)

  1. ptime >= "0.8.1"
  2. cmdliner >= "1.1.0"
  3. lwt >= "5.7.0"
  4. x509 >= "0.15.0"
  5. mirage-crypto-rng-lwt >= "0.11.0"
  6. tls = version
  7. dune >= "3.0"
  8. ocaml >= "4.08.0"

Dev Dependencies (1)

  1. randomconv with-test & < "0.2.0"

Conflicts (1)

  1. result < "1.5"
OCaml

Innovation. Community. Security.