From e17e1df77e651e557ad8fc67e2bea0bbcf98f153 Mon Sep 17 00:00:00 2001 From: Matt Caswell Date: Thu, 13 Jul 2017 18:02:18 +0100 Subject: [PATCH] Add documentation for SSL_SESSION_set_max_early_data() Reviewed-by: Ben Kaduk (Merged from https://github.com/openssl/openssl/pull/3926) --- doc/man3/SSL_CTX_set_psk_client_callback.pod | 4 ++++ doc/man3/SSL_read_early_data.pod | 11 +++++++++-- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/doc/man3/SSL_CTX_set_psk_client_callback.pod b/doc/man3/SSL_CTX_set_psk_client_callback.pod index 919b6af292..5a48e13129 100644 --- a/doc/man3/SSL_CTX_set_psk_client_callback.pod +++ b/doc/man3/SSL_CTX_set_psk_client_callback.pod @@ -98,6 +98,10 @@ be TLS1_3_VERSION. =back +Additionally the maximum early data value should be set via a call to +L if the PSK will be used for sending early +data. + Alternatively an SSL_SESSION created from a previous non-PSK handshake may also be used as the basis for a PSK. diff --git a/doc/man3/SSL_read_early_data.pod b/doc/man3/SSL_read_early_data.pod index f0237faf40..a593b147b8 100644 --- a/doc/man3/SSL_read_early_data.pod +++ b/doc/man3/SSL_read_early_data.pod @@ -7,6 +7,7 @@ SSL_CTX_set_max_early_data, SSL_get_max_early_data, SSL_CTX_get_max_early_data, SSL_SESSION_get_max_early_data, +SSL_SESSION_set_max_early_data, SSL_write_early_data, SSL_read_early_data, SSL_get_early_data_status @@ -21,6 +22,7 @@ SSL_get_early_data_status int SSL_set_max_early_data(SSL *s, uint32_t max_early_data); uint32_t SSL_get_max_early_data(const SSL *s); uint32_t SSL_SESSION_get_max_early_data(const SSL_SESSION *s); + int SSL_SESSION_set_max_early_data(SSL_SESSION *s, uint32_t max_early_data); int SSL_write_early_data(SSL *s, const void *buf, size_t num, size_t *written); @@ -59,6 +61,10 @@ determine if a session established with a server can be used to send early data. If the session cannot be used then this function will return 0. Otherwise it will return the maximum number of early data bytes that can be sent. +The function SSL_SESSION_set_max_early_data() sets the maximum number of early +data bytes that can be sent for a session. This would typically be used when +creating a PSK session file (see L). + A client uses the function SSL_write_early_data() to send early data. This function is similar to the L function, but with the following differences. See L for information on how to write bytes to @@ -207,8 +213,8 @@ SSL_get_max_early_data(), SSL_CTX_get_max_early_data() and SSL_SESSION_get_max_early_data() return the maximum number of early data bytes that may be sent. -SSL_set_max_early_data() and SSL_CTX_set_max_early_data() return 1 for success -or 0 for failure. +SSL_set_max_early_data(), SSL_CTX_set_max_early_data() and +SSL_SESSION_set_max_early_data() return 1 for success or 0 for failure. SSL_get_early_data_status() returns SSL_EARLY_DATA_ACCEPTED if early data was accepted by the server, SSL_EARLY_DATA_REJECTED if early data was rejected by @@ -222,6 +228,7 @@ L, L, L, L, +L, L =head1 HISTORY -- 2.34.1