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.3.tbz
sha256=b27f0d5cfc1aea26e9a45070fcc57c6c6d02c91e58ac026166552fc23e3f6150
sha512=ec26bebdb8ab9459d8be643b4a2ad51997aab900f1eac6e5856d54af5babfae25dc4318bdc10136e6c0c1d1f5460c24d0d54fd113a3750ebbc18126929d8ae63

Description

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

Tags

org:mirage

Published: 30 Sep 2024

README

TLS - Transport Layer Security purely in OCaml

v1.0.3

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.2"
  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.