diff options
author | Daniel Stenberg <daniel@haxx.se> | 2016-03-29 10:23:33 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2016-03-29 10:23:33 +0200 |
commit | 3e5395a8201f185b4de69e39ead819ba35cb75de (patch) | |
tree | 2644a14b482bb159969f204eec220b7b2d564feb /docs | |
parent | 09cca9813d14b15f13722fe2b02dab08bd910e44 (diff) | |
download | curl-3e5395a8201f185b4de69e39ead819ba35cb75de.tar.gz |
HTTP2.md: mention libressl and boringssl too
Diffstat (limited to 'docs')
-rw-r--r-- | docs/HTTP2.md | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/docs/HTTP2.md b/docs/HTTP2.md index 6fc3e49c8..81b3d5e21 100644 --- a/docs/HTTP2.md +++ b/docs/HTTP2.md @@ -7,8 +7,8 @@ HTTP/2 with curl Build prerequisites ------------------- - nghttp2 - - OpenSSL, NSS, GnutTLS, mbedTLS, wolfSSL or SChannel with a new enough - version. + - OpenSSL, libressl, BoringSSL, NSS, GnutTLS, mbedTLS, wolfSSL or SChannel + with a new enough version. [nghttp2](https://nghttp2.org/) ------------------------------- @@ -52,15 +52,17 @@ SSL libs -------- The challenge is the ALPN and NPN support and all our different SSL -backends. You may need a fairly updated SSL library version for it to -provide the necessary TLS features. Right now we support: - - - OpenSSL: ALPN and NPN - - NSS: ALPN and NPN - - GnuTLS: ALPN - - mbedTLS: ALPN - - SChannel: ALPN - - wolfSSL: ALPN +backends. You may need a fairly updated SSL library version for it to provide +the necessary TLS features. Right now we support: + + - OpenSSL: ALPN and NPN + - libressl: ALPN and NPN + - BoringSSL: ALPN and NPN + - NSS: ALPN and NPN + - GnuTLS: ALPN + - mbedTLS: ALPN + - SChannel: ALPN + - wolfSSL: ALPN Multiplexing ------------ |