aboutsummaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorGarrett D'Amore <garrett@damore.org>2024-11-16 13:27:45 -0800
committerGarrett D'Amore <garrett@damore.org>2024-11-16 13:53:28 -0800
commit1ca297dd9cd5daaab9be45d210f0f4df814cea03 (patch)
treea02dfe064e3a768b976407af62ab988202dcef9c /docs/ref
parent9ecd18c0089195ad914f68137e7671c267e55a99 (diff)
downloadnng-1ca297dd9cd5daaab9be45d210f0f4df814cea03.tar.gz
nng-1ca297dd9cd5daaab9be45d210f0f4df814cea03.tar.bz2
nng-1ca297dd9cd5daaab9be45d210f0f4df814cea03.zip
tls: remove support for TLS 1.0 and 1.1.
Those old algorithms are not used anywhere, and are not recommended. TLS 1.2 support has been prevalent for over a decade.
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/migrate/nng1.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/ref/migrate/nng1.md b/docs/ref/migrate/nng1.md
index 2c6087e2..2a1456b7 100644
--- a/docs/ref/migrate/nng1.md
+++ b/docs/ref/migrate/nng1.md
@@ -54,6 +54,12 @@ Likewise, when using the streams API, use the [`nng_stream_listener_set_tls`] or
Note that the declarations needed for TLS configuration are now available in `<nng/nng.h>`,
rather than the supplemental header.
+## Old TLS Versions Removed
+
+Support for very old TLS versions 1.0 and 1.1 is removed.
+Further, the `NNG_TLS_1_0` and `NNG_TLS_1_1` constants are also removed.
+Applications should use `NNG_TLS_1_2` or even `NNG_TLS_1_3` instead.
+
## Option Functions
The previously deprecated `nng_pipe_getopt_xxx` family of functions is removed.