package tls-async
Install
Dune Dependency
Authors
Maintainers
Sources
sha256=89108857bf3a6f85722925a8d4a3f59c291d638c0f2e2fc45f0fdaf892ae4819
sha512=cd862d74ad20bb419896b50a7fc754b52d4cb29f996e396be216926205f6d7b24dda1cffcd0c81bc3bc2837da53451459a595d5132032fe1460a6776d893eff9
Description
Tls-async provides Async-friendly tls bindings
README
TLS - Transport Layer Security purely in OCaml
v0.17.5
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
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 (11)
-
mirage-crypto-rng-async
< "1.0.0"
-
ppx_jane
>= "v0.16"
- cstruct-async
-
core
>= "v0.16"
-
async_unix
>= "v0.16"
-
async
>= "v0.16"
-
ptime
>= "0.8.1"
-
x509
>= "0.14.0"
-
tls
= version
-
dune
>= "3.0"
-
ocaml
>= "4.08.0"
Dev Dependencies
None
Used by (1)
Conflicts
None