Skip to content

Commit

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

* BREAKING: new opam package tls-lwt (formerly tls.lwt), in dune:
  (libraries tls.lwt) should now be libraries (tls-lwt)
  (mirleft/ocaml-tls#468 @hannesm, reported mirleft/ocaml-tls#449 by @mbacarella)
* tls: update to mirage-crypto 0.11 API (mirleft/ocaml-tls#468 @hannesm)
* tls: relax SignatureAlgorithms extension handling to allow OpenSSL
  interoperability tests with TLS 1.0 and TLS 1.1 (mirleft/ocaml-tls#469 @hannesm)
* tls: remove Utils.filter_map and and Utils.option, use Stdlib instead (mirleft/ocaml-tls#455
  @hannesm)
* tls: do not globally open Utils (mirleft/ocaml-tls#455 @hannesm)
* tls: export log source of Tracing module (mirleft/ocaml-tls#461 @bikallem)
* tls: remove unused ciphersuites to reduce binary size (mirleft/ocaml-tls#467 @hannesm)
* tls-lwt: do not catch out of memory exception (mirleft/ocaml-tls#469 @hannesm)
* tls-eio: add fuzz testing using crowbar (mirleft/ocaml-tls#456 mirleft/ocaml-tls#463 @talex5)
* tls-eio: update to eio 0.7 (mirleft/ocaml-tls#456 @talex5)
* tls-eio: fix test for develop with vendoring (mirleft/ocaml-tls#462 @bikallem)
  • Loading branch information
hannesm committed Feb 14, 2023
1 parent 22e750a commit 547db10
Show file tree
Hide file tree
Showing 5 changed files with 255 additions and 0 deletions.
47 changes: 47 additions & 0 deletions packages/tls-async/tls-async.0.16.0/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.16.0/tls-0.16.0.tbz"
checksum: [
"sha256=baf20364b372e84fdc7bb626cd451568e78645a1ea3d2533b843d00ccbb4f6d3"
"sha512=6f4b51195f0e6e3af70299c5991d504b637782b10a9039001022dd4bd050b297dd21aff3fa259dddb05f4708176d4ff0c827295605d7abe7a3c472056f0a78e6"
]
}
x-commit-hash: "d49476ac75f5db748f44b7fa7b8f50bb837c17a5"
53 changes: 53 additions & 0 deletions packages/tls-eio/tls-eio.0.16.0/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
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.7"}
"eio_main" {>= "0.7" with-test}
"mdx" {with-test}
"crowbar" {>= "0.2.1" 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.16.0/tls-0.16.0.tbz"
checksum: [
"sha256=baf20364b372e84fdc7bb626cd451568e78645a1ea3d2533b843d00ccbb4f6d3"
"sha512=6f4b51195f0e6e3af70299c5991d504b637782b10a9039001022dd4bd050b297dd21aff3fa259dddb05f4708176d4ff0c827295605d7abe7a3c472056f0a78e6"
]
}
x-commit-hash: "d49476ac75f5db748f44b7fa7b8f50bb837c17a5"
41 changes: 41 additions & 0 deletions packages/tls-lwt/tls-lwt.0.16.0/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
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}
"mirage-crypto-rng-lwt" {>= "0.11.0"}
"x509" {>= "0.15.0"}
"lwt" {>= "3.0.0"}
"cmdliner" {>= "1.1.0"}
]
conflicts: [ "result" {< "1.5"} ]
tags: [ "org:mirage"]
synopsis: "Transport Layer Security purely in OCaml, Lwt layer"
description: """
Tls-lwt provides an effectful Tls_lwt module to be used with Lwt.
"""
authors: [
"David Kaloper <david@numm.org>" "Hannes Mehnert <hannes@mehnert.org>"
]
url {
src:
"https://github.com/mirleft/ocaml-tls/releases/download/v0.16.0/tls-0.16.0.tbz"
checksum: [
"sha256=baf20364b372e84fdc7bb626cd451568e78645a1ea3d2533b843d00ccbb4f6d3"
"sha512=6f4b51195f0e6e3af70299c5991d504b637782b10a9039001022dd4bd050b297dd21aff3fa259dddb05f4708176d4ff0c827295605d7abe7a3c472056f0a78e6"
]
}
x-commit-hash: "d49476ac75f5db748f44b7fa7b8f50bb837c17a5"
46 changes: 46 additions & 0 deletions packages/tls-mirage/tls-mirage.0.16.0/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.16.0/tls-0.16.0.tbz"
checksum: [
"sha256=baf20364b372e84fdc7bb626cd451568e78645a1ea3d2533b843d00ccbb4f6d3"
"sha512=6f4b51195f0e6e3af70299c5991d504b637782b10a9039001022dd4bd050b297dd21aff3fa259dddb05f4708176d4ff0c827295605d7abe7a3c472056f0a78e6"
]
}
x-commit-hash: "d49476ac75f5db748f44b7fa7b8f50bb837c17a5"
68 changes: 68 additions & 0 deletions packages/tls/tls.0.16.0/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
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.11.0"}
"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"}
"hkdf"
"logs"
"ipaddr"
"ipaddr-sexp"
"alcotest" {with-test}
"randomconv" {with-test}
]
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.16.0/tls-0.16.0.tbz"
checksum: [
"sha256=baf20364b372e84fdc7bb626cd451568e78645a1ea3d2533b843d00ccbb4f6d3"
"sha512=6f4b51195f0e6e3af70299c5991d504b637782b10a9039001022dd4bd050b297dd21aff3fa259dddb05f4708176d4ff0c827295605d7abe7a3c472056f0a78e6"
]
}
x-commit-hash: "d49476ac75f5db748f44b7fa7b8f50bb837c17a5"

0 comments on commit 547db10

Please sign in to comment.