package tls-eio
Install
Dune Dependency
Authors
Maintainers
Sources
sha256=1f2f579acf3f6d5a17d1fabf8511853665c7b44afc47cd17d56781f5c733f154
sha512=75e31d1db89203e6b5b2450e2e63a2c76566e1bb619e4cfbd9b7e9d3db6b145334bd1ad0675ed44d3d7485295c2445db3281aed086cbffee466564095f1e7a2b
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 our Usenix Security 2015 paper.
README
TLS - Transport Layer Security purely in OCaml
v0.17.2
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 (7)
Dev Dependencies (5)
-
logs
>= "0.7.0" & with-test
-
crowbar
>= "0.2.1" & with-test
-
mdx
with-test
-
eio_main
>= "0.12" & with-test
-
mirage-crypto-rng-eio
with-test & >= "0.11.2" & < "1.0.0"
Used by (3)
- carbon
-
cohttp-eio
>= "6.0.0~beta2"
- mehari-eio
Conflicts
None