Skip to content

Commit

Permalink
[new release] tls, tls-mirage, tls-eio and tls-async (0.15.4)
Browse files Browse the repository at this point in the history
CHANGES:

* New package tls-eio (mirleft/ocaml-tls#451 @talex5)
* Tls_async: expose tls_handler (mirleft/ocaml-tls#448 @mbacarella, reviewed by @torinnd)
  • Loading branch information
hannesm committed Sep 27, 2022
1 parent f3dcd52 commit 54f9fc9
Show file tree
Hide file tree
Showing 4 changed files with 216 additions and 0 deletions.
47 changes: 47 additions & 0 deletions packages/tls-async/tls-async.0.15.4/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
opam-version: "2.0"
homepage: "https://github.com/mirleft/ocaml-tls"
dev-repo: "git+https://github.com/mirleft/ocaml-tls.git"
bug-reports: "https://github.com/mirleft/ocaml-tls/issues"
doc: "https://mirleft.github.io/ocaml-tls/doc"
maintainer: ["Hannes Mehnert <hannes@mehnert.org>" "David Kaloper <david@numm.org>"]
license: "BSD-2-Clause"

build: [
["dune" "subst"] {dev}
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] {with-test}
]

depends: [
"ocaml" {>= "4.08.0" & < "5.0.0"}
"dune" {>= "3.0"}
"tls" {= version}
"x509" {>= "0.14.0"}
"ptime" {>= "0.8.1"}
"async" {>= "v0.15"}
"async_unix" {>= "v0.15"}
"core" {>= "v0.15"}
"cstruct-async"
"ppx_jane" {>= "v0.15"}
"mirage-crypto-rng-async"
]
tags: [ "org:mirage"]
synopsis: "Transport Layer Security purely in OCaml, Async layer"
description: """
Tls-async provides Async-friendly tls bindings
"""
authors: [
"David Kaloper <david@numm.org>"
"Hannes Mehnert <hannes@mehnert.org>"
"Eric Ebinger <github@eric.theebingers.com>"
"Calascibetta Romain <romain.calascibetta@gmail.com>"
]
url {
src:
"https://github.com/mirleft/ocaml-tls/releases/download/v0.15.4/tls-0.15.4.tbz"
checksum: [
"sha256=5f8d1d56b06f6069efd1d0a3de0c45cb488d3d13eb7f132c84ec7ba3f0d1c382"
"sha512=333352cb90bd1a43763571373e61fea1c0ea31f81ef728069344bf807e5a1916d3e249260b37bae62128961f4f7cbfd3cb22b1541088aa241e4637aec7aa7876"
]
}
x-commit-hash: "d3f351659652abe1f251cbd96d81df66f99114de"
52 changes: 52 additions & 0 deletions packages/tls-eio/tls-eio.0.15.4/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
opam-version: "2.0"
homepage: "https://github.com/mirleft/ocaml-tls"
dev-repo: "git+https://github.com/mirleft/ocaml-tls.git"
bug-reports: "https://github.com/mirleft/ocaml-tls/issues"
doc: "https://mirleft.github.io/ocaml-tls/doc"
authors: ["Thomas Leonard"]
maintainer: ["Hannes Mehnert <hannes@mehnert.org>" "David Kaloper <david@numm.org>"]
license: "BSD-2-Clause"

build: [
["dune" "subst"] {dev}
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] {with-test}
]

depends: [
"ocaml" {>= "5.0.0"}
"dune" {>= "3.0"}
"tls" {= version}
"mirage-crypto-rng" {>= "0.8.0"}
"mirage-crypto-rng-eio" {>= "0.8.0" with-test}
"x509" {>= "0.15.0"}
"eio" {>= "0.5"}
"eio_main" {>= "0.5" with-test}
"mdx" {with-test}
]
tags: [ "org:mirage"]
synopsis: "Transport Layer Security purely in OCaml - Eio"
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](http://tools.ietf.org/html/rfc2818)), 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](https://nqsb.io) and our [Usenix Security 2015 paper](https://usenix15.nqsb.io).
"""
url {
src:
"https://github.com/mirleft/ocaml-tls/releases/download/v0.15.4/tls-0.15.4.tbz"
checksum: [
"sha256=5f8d1d56b06f6069efd1d0a3de0c45cb488d3d13eb7f132c84ec7ba3f0d1c382"
"sha512=333352cb90bd1a43763571373e61fea1c0ea31f81ef728069344bf807e5a1916d3e249260b37bae62128961f4f7cbfd3cb22b1541088aa241e4637aec7aa7876"
]
}
x-commit-hash: "d3f351659652abe1f251cbd96d81df66f99114de"
46 changes: 46 additions & 0 deletions packages/tls-mirage/tls-mirage.0.15.4/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
opam-version: "2.0"
homepage: "https://github.com/mirleft/ocaml-tls"
dev-repo: "git+https://github.com/mirleft/ocaml-tls.git"
bug-reports: "https://github.com/mirleft/ocaml-tls/issues"
doc: "https://mirleft.github.io/ocaml-tls/doc"
maintainer: ["Hannes Mehnert <hannes@mehnert.org>" "David Kaloper <david@numm.org>"]
license: "BSD-2-Clause"

build: [
["dune" "subst"] {dev}
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] {with-test}
]

depends: [
"ocaml" {>= "4.08.0"}
"dune" {>= "3.0"}
"tls" {= version}
"x509" {>= "0.13.0"}
"fmt" {>= "0.8.7"}
"lwt" {>= "3.0.0"}
"mirage-flow" {>= "2.0.0"}
"mirage-kv" {>= "3.0.0"}
"mirage-clock" {>= "3.0.0"}
"ptime" {>= "0.8.1"}
"mirage-crypto"
"mirage-crypto-pk"
]
tags: [ "org:mirage"]
synopsis: "Transport Layer Security purely in OCaml, MirageOS layer"
description: """
Tls-mirage provides an effectful FLOW module to be used in the MirageOS
ecosystem.
"""
authors: [
"David Kaloper <david@numm.org>" "Hannes Mehnert <hannes@mehnert.org>"
]
url {
src:
"https://github.com/mirleft/ocaml-tls/releases/download/v0.15.4/tls-0.15.4.tbz"
checksum: [
"sha256=5f8d1d56b06f6069efd1d0a3de0c45cb488d3d13eb7f132c84ec7ba3f0d1c382"
"sha512=333352cb90bd1a43763571373e61fea1c0ea31f81ef728069344bf807e5a1916d3e249260b37bae62128961f4f7cbfd3cb22b1541088aa241e4637aec7aa7876"
]
}
x-commit-hash: "d3f351659652abe1f251cbd96d81df66f99114de"
71 changes: 71 additions & 0 deletions packages/tls/tls.0.15.4/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
opam-version: "2.0"
homepage: "https://github.com/mirleft/ocaml-tls"
dev-repo: "git+https://github.com/mirleft/ocaml-tls.git"
bug-reports: "https://github.com/mirleft/ocaml-tls/issues"
doc: "https://mirleft.github.io/ocaml-tls/doc"
maintainer: ["Hannes Mehnert <hannes@mehnert.org>" "David Kaloper <david@numm.org>"]
license: "BSD-2-Clause"

build: [
["dune" "subst"] {dev}
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] {with-test}
]

depends: [
"ocaml" {>= "4.08.0"}
"dune" {>= "3.0"}
"ppx_sexp_conv" {>= "v0.9.0"}
"ppx_cstruct" {>= "3.0.0"}
"cstruct" {>= "6.0.0"}
"cstruct-sexp"
"sexplib"
"mirage-crypto" {>= "0.8.1"}
"mirage-crypto-ec" {>= "0.10.0"}
"mirage-crypto-pk"
"mirage-crypto-rng" {>= "0.8.0"}
"x509" {>= "0.15.0"}
"domain-name" {>= "0.3.0"}
"fmt" {>= "0.8.7"}
"cstruct-unix" {with-test & >= "3.0.0"}
"ounit2" {with-test & >= "2.2.0"}
"lwt" {>= "3.0.0"}
"ptime" {>= "0.8.1"}
"hkdf"
"logs"
"ipaddr"
"ipaddr-sexp"
"alcotest" {with-test}
"randomconv" {with-test}
"cmdliner" {dev & > "1.1.0"}
]
conflicts: [ "result" {< "1.5"} ]
tags: [ "org:mirage"]
synopsis: "Transport Layer Security purely in OCaml"
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](http://tools.ietf.org/html/rfc2818)), 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](https://nqsb.io) and our [Usenix Security 2015 paper](https://usenix15.nqsb.io).
"""
authors: [
"David Kaloper <david@numm.org>" "Hannes Mehnert <hannes@mehnert.org>"
]
url {
src:
"https://github.com/mirleft/ocaml-tls/releases/download/v0.15.4/tls-0.15.4.tbz"
checksum: [
"sha256=5f8d1d56b06f6069efd1d0a3de0c45cb488d3d13eb7f132c84ec7ba3f0d1c382"
"sha512=333352cb90bd1a43763571373e61fea1c0ea31f81ef728069344bf807e5a1916d3e249260b37bae62128961f4f7cbfd3cb22b1541088aa241e4637aec7aa7876"
]
}
x-commit-hash: "d3f351659652abe1f251cbd96d81df66f99114de"

0 comments on commit 54f9fc9

Please sign in to comment.