summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorKinshuk Dua <kinshukdua@gmail.com>2021-10-21 18:47:53 +0530
committerTomas Mraz <tomas@openssl.org>2021-10-22 16:24:24 +0200
commitb76422e708654663990b6f3b3ce85066ae05ad4a (patch)
treed1f1b2a9a8ccf053fdfb18689b86215a81ff6158 /doc
parentfd7c2ff23c65eb8b06ae2d9d600d6e3301d98aaf (diff)
Doc: be explicit about NUL in max_identity_len
Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/16877) (cherry picked from commit 25ead551aa31feae91cab91b648a2ca16bc7a8dc)
Diffstat (limited to 'doc')
-rw-r--r--doc/man3/SSL_CTX_set_psk_client_callback.pod8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/man3/SSL_CTX_set_psk_client_callback.pod b/doc/man3/SSL_CTX_set_psk_client_callback.pod
index 23bab17317..dd302983fd 100644
--- a/doc/man3/SSL_CTX_set_psk_client_callback.pod
+++ b/doc/man3/SSL_CTX_set_psk_client_callback.pod
@@ -107,11 +107,11 @@ the pre-shared key to use during the connection setup phase.
The callback is set using functions SSL_CTX_set_psk_client_callback()
or SSL_set_psk_client_callback(). The callback function is given the
-connection in parameter B<ssl>, a B<NULL>-terminated PSK identity hint
+connection in parameter B<ssl>, a B<NUL>-terminated PSK identity hint
sent by the server in parameter B<hint>, a buffer B<identity> of
-length B<max_identity_len> bytes where the resulting
-B<NUL>-terminated identity is to be stored, and a buffer B<psk> of
-length B<max_psk_len> bytes where the resulting pre-shared key is to
+length B<max_identity_len> bytes (including the B<NUL>-terminator) where the
+resulting B<NUL>-terminated identity is to be stored, and a buffer B<psk>
+of length B<max_psk_len> bytes where the resulting pre-shared key is to
be stored.
The callback for use in TLSv1.2 will also work in TLSv1.3 although it is