package tls-async

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

Install

Dune Dependency

Authors

Maintainers

Sources

tls-1.0.0.tbz
sha256=465c4a5c62f868025cd48fd09b2cbef8cf378d996386c09de1535be8407405a5
sha512=6ee0400f93d1294f44e68f7641a8fe95818aefabea41bb39cb384d4639d9023e2f0e82a75328ae603c575593ff154318d100de4e9d0951afc86e611002b3080e

Description

Tls-async provides Async-friendly tls bindings

Tags

org:mirage

Published: 22 Aug 2024

README

TLS - Transport Layer Security purely in OCaml

v1.0.0

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 (11)

  1. mirage-crypto-rng-async >= "1.0.0"
  2. ppx_jane >= "v0.16"
  3. cstruct-async
  4. core_unix >= "v0.16"
  5. core >= "v0.16"
  6. async_unix >= "v0.16"
  7. async >= "v0.16"
  8. ptime >= "0.8.1"
  9. tls = version
  10. dune >= "3.0"
  11. ocaml >= "4.14.0"

Dev Dependencies

None

Used by

None

Conflicts

None

OCaml

Innovation. Community. Security.