package tls-miou-unix

  1. Overview
  2. Docs
Transport Layer Security purely in OCaml, Miou+Unix layer

Install

Dune Dependency

Authors

Maintainers

Sources

tls-1.0.1.tbz
sha256=dae4b5ffc803e882e984804258ff8aaca7b837d8556de68400195da5c70a8d83
sha512=2e470bfb6ea8be00e2810c284421c164abde282afe951c3c24d4cf3021d80cc4b2dbc7fe7d8cfa934f40564d1f99b6e7a9ad99720e4698a01b2c6d6826d45593

Description

Tls-miou provides an effectful Tls_miou module to be used with Miou and Unix.

Tags

org:mirage

Published: 25 Aug 2024

README

TLS - Transport Layer Security purely in OCaml

v1.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 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 (5)

  1. miou >= "0.3.0"
  2. x509 >= "1.0.0"
  3. tls = "1.0.0"
  4. dune >= "3.0"
  5. ocaml >= "5.0.0"

Dev Dependencies (6)

  1. hxd with-test
  2. ptime with-test
  3. ohex with-test
  4. rresult with-test
  5. crowbar with-test
  6. mirage-crypto-rng-miou-unix >= "1.0.0" & with-test

Conflicts

None

OCaml

Innovation. Community. Security.