package tls-eio

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

Install

Dune Dependency

Authors

Maintainers

Sources

tls-0.17.1.tbz
sha256=8010d2b6de148da2286928181d233bd720fa60fa157b3d4250bca0dd008c5d3f
sha512=1cef22fc37b3138d1676f5a2d3000835167fb75dad07cec5e851e19c3af3250a30392a49e279e5b1f3119de29383723fb76f2bd830820b45861053047c85da1a

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: 05 Jul 2023

README

TLS - Transport Layer Security purely in OCaml

v0.17.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 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 (6)

  1. eio >= "0.7" & < "0.12"
  2. x509 >= "0.15.0"
  3. mirage-crypto-rng >= "0.8.0"
  4. tls = version
  5. dune >= "3.0"
  6. ocaml >= "5.0.0"

Dev Dependencies (4)

  1. crowbar >= "0.2.1" & with-test
  2. mdx with-test
  3. eio_main >= "0.7" & with-test
  4. mirage-crypto-rng-eio >= "0.8.0" & with-test

Conflicts

None