package tls-eio

  1. Overview
  2. Docs
Transport Layer Security purely in OCaml - Eio

Install

Dune Dependency

Authors

Maintainers

Sources

tls-0.17.2.tbz
sha256=1f2f579acf3f6d5a17d1fabf8511853665c7b44afc47cd17d56781f5c733f154
sha512=75e31d1db89203e6b5b2450e2e63a2c76566e1bb619e4cfbd9b7e9d3db6b145334bd1ad0675ed44d3d7485295c2445db3281aed086cbffee466564095f1e7a2b

Description

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.

Tags

org:mirage

Published: 25 Sep 2023

README

TLS - Transport Layer Security purely in OCaml

v0.17.2

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

  1. ptime >= "1.0.0"
  2. eio >= "0.12"
  3. x509 >= "0.15.0"
  4. mirage-crypto-rng >= "0.11.2"
  5. tls = "0.17.1"
  6. dune >= "3.0"
  7. ocaml >= "5.0.0"

Dev Dependencies (5)

  1. logs >= "0.7.0" & with-test
  2. crowbar >= "0.2.1" & with-test
  3. mdx with-test
  4. eio_main >= "0.12" & with-test
  5. mirage-crypto-rng-eio >= "0.11.2" & with-test

Used by (3)

  1. carbon
  2. cohttp-eio >= "6.0.0~beta2"
  3. mehari-eio

Conflicts

None