Skip to content

Commit

Permalink
changes for 0.16.0, minor adjustments to opam files
Browse files Browse the repository at this point in the history
  • Loading branch information
hannesm committed Feb 14, 2023
1 parent 8ec55e5 commit d49476a
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 15 deletions.
18 changes: 18 additions & 0 deletions CHANGES.md
@@ -1,3 +1,21 @@
## v0.16.0 (2023-02-14)

* BREAKING: new opam package tls-lwt (formerly tls.lwt), in dune:
(libraries tls.lwt) should now be libraries (tls-lwt)
(#468 @hannesm, reported #449 by @mbacarella)
* tls: update to mirage-crypto 0.11 API (#468 @hannesm)
* tls: relax SignatureAlgorithms extension handling to allow OpenSSL
interoperability tests with TLS 1.0 and TLS 1.1 (#469 @hannesm)
* tls: remove Utils.filter_map and and Utils.option, use Stdlib instead (#455
@hannesm)
* tls: do not globally open Utils (#455 @hannesm)
* tls: export log source of Tracing module (#461 @bikallem)
* tls: remove unused ciphersuites to reduce binary size (#467 @hannesm)
* tls-lwt: do not catch out of memory exception (#469 @hannesm)
* tls-eio: add fuzz testing using crowbar (#456 #463 @talex5)
* tls-eio: update to eio 0.7 (#456 @talex5)
* tls-eio: fix test for develop with vendoring (#462 @bikallem)

## v0.15.5 (2022-10-25)

* tls-eio release only: fix end-of-file handling (#454 @talex5), avoid
Expand Down
16 changes: 2 additions & 14 deletions tls-lwt.opam
Expand Up @@ -24,19 +24,7 @@ depends: [
]
conflicts: [ "result" {< "1.5"} ]
tags: [ "org:mirage"]
synopsis: "Transport Layer Security purely in OCaml"
synopsis: "Transport Layer Security purely in OCaml, Lwt layer"
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).
Tls-lwt provides an effectful Tls_lwt module to be used with Lwt.
"""
2 changes: 1 addition & 1 deletion tls.opam
Expand Up @@ -21,7 +21,7 @@ depends: [
"cstruct" {>= "6.0.0"}
"cstruct-sexp"
"sexplib"
"mirage-crypto" {>= "0.8.1"}
"mirage-crypto" {>= "0.11.0"}
"mirage-crypto-ec" {>= "0.10.0"}
"mirage-crypto-pk"
"mirage-crypto-rng" {>= "0.8.0"}
Expand Down

0 comments on commit d49476a

Please sign in to comment.