package tls-mirage

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

Install

Dune Dependency

Authors

Maintainers

Sources

tls-0.17.3.tbz
sha256=47e5decdd30ed1c367736458a63ae077474147b3dd675c14590b81a92d5031d4
sha512=da0765852ebaa0badab2600e77b9f602e7b68784d35845bcf44ee87639b14247abdeb08190df5882dd99aa59d534dbc5119c32994446604eb38e4c72d30c0f06

Description

Tls-mirage provides an effectful FLOW module to be used in the MirageOS ecosystem.

Tags

org:mirage

Published: 21 Nov 2023

README

TLS - Transport Layer Security purely in OCaml

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

  1. mirage-crypto-pk
  2. mirage-crypto
  3. ptime >= "0.8.1"
  4. mirage-clock >= "3.0.0"
  5. mirage-kv >= "3.0.0"
  6. mirage-flow >= "2.0.0" & < "4.0.0"
  7. lwt >= "3.0.0"
  8. fmt >= "0.8.7"
  9. x509 >= "0.13.0"
  10. tls = version
  11. dune >= "3.0"
  12. ocaml >= "4.08.0"

Dev Dependencies

None

Used by (13)

  1. capnp-rpc-mirage >= "0.6.0" & < "1.1" | >= "1.2.1"
  2. capnp-rpc-net >= "0.6.0"
  3. caqti-mirage >= "2.1.1"
  4. conduit-mirage >= "2.1.0" & < "2.2.1" | >= "4.0.2" & != "6.2.0"
  5. dns-client >= "6.0.0" & < "7.0.0"
  6. dns-client-mirage
  7. dns-resolver >= "6.0.0"
  8. git-mirage >= "3.7.0"
  9. git-paf >= "3.5.0"
  10. git-unix >= "3.5.0"
  11. mehari-mirage
  12. paf >= "0.0.2" & != "0.0.5"
  13. paf-le

Conflicts

None