this repo has no description
1opam-version: "2.0"
2homepage: "https://github.com/mirleft/ocaml-tls"
3dev-repo: "git+https://github.com/mirleft/ocaml-tls.git"
4bug-reports: "https://github.com/mirleft/ocaml-tls/issues"
5doc: "https://mirleft.github.io/ocaml-tls/doc"
6maintainer: ["Hannes Mehnert <hannes@mehnert.org>" "David Kaloper <david@numm.org>"]
7license: "BSD-2-Clause"
8
9build: [
10 ["dune" "subst"] {dev}
11 ["dune" "build" "-p" name "-j" jobs]
12 ["dune" "runtest" "-p" name "-j" jobs] {with-test}
13]
14
15depends: [
16 "ocaml" {>= "4.08.0"}
17 "dune" {>= "3.0"}
18 "cstruct" {>= "6.0.0"}
19 "mirage-crypto" {>= "0.11.0" & < "1.0.0"}
20 "mirage-crypto-ec" {>= "0.10.0" & < "1.0.0"}
21 "mirage-crypto-pk" {< "1.0.0"}
22 "mirage-crypto-rng" {>= "0.8.0" & < "1.0.0"}
23 "x509" {>= "0.15.0"}
24 "domain-name" {>= "0.3.0"}
25 "fmt" {>= "0.8.7"}
26 "cstruct-unix" {with-test & >= "3.0.0"}
27 "ounit2" {with-test & >= "2.2.0"}
28 "hkdf" {< "2.0.0"}
29 "logs"
30 "ipaddr"
31 "alcotest" {with-test}
32]
33conflicts: [ "result" {< "1.5"} ]
34tags: [ "org:mirage"]
35synopsis: "Transport Layer Security purely in OCaml"
36description: """
37Transport Layer Security (TLS) is probably the most widely deployed security
38protocol on the Internet. It provides communication privacy to prevent
39eavesdropping, tampering, and message forgery. Furthermore, it optionally
40provides authentication of the involved endpoints. TLS is commonly deployed for
41securing web services ([HTTPS](http://tools.ietf.org/html/rfc2818)), emails,
42virtual private networks, and wireless networks.
43
44TLS uses asymmetric cryptography to exchange a symmetric key, and optionally
45authenticate (using X.509) either or both endpoints. It provides algorithmic
46agility, which means that the key exchange method, symmetric encryption
47algorithm, and hash algorithm are negotiated.
48
49Read our [Usenix Security 2015 paper](https://www.usenix.org/conference/usenixsecurity15/technical-sessions/presentation/kaloper-mersinjak).
50"""
51authors: [
52 "David Kaloper <david@numm.org>" "Hannes Mehnert <hannes@mehnert.org>"
53]
54url {
55 src:
56 "https://github.com/mirleft/ocaml-tls/releases/download/v0.17.5/tls-0.17.5.tbz"
57 checksum: [
58 "sha256=89108857bf3a6f85722925a8d4a3f59c291d638c0f2e2fc45f0fdaf892ae4819"
59 "sha512=cd862d74ad20bb419896b50a7fc754b52d4cb29f996e396be216926205f6d7b24dda1cffcd0c81bc3bc2837da53451459a595d5132032fe1460a6776d893eff9"
60 ]
61}
62x-commit-hash: "c493430923c94aac1eaf84e2cebb80013403630c"