From 83750d9b2b51bb622138d48fc82eb408b64d8057 Mon Sep 17 00:00:00 2001 From: Matt Caswell Date: Thu, 2 Mar 2017 17:40:43 +0000 Subject: [PATCH] More early data documentation updates following feedback Reviewed-by: Rich Salz (Merged from https://github.com/openssl/openssl/pull/2737) --- doc/man1/s_server.pod | 5 +++-- doc/man3/{SSL_read_early.pod => SSL_read_early_data.pod} | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) rename doc/man3/{SSL_read_early.pod => SSL_read_early_data.pod} (99%) diff --git a/doc/man1/s_server.pod b/doc/man1/s_server.pod index 3807a6cd3d..c16b562465 100644 --- a/doc/man1/s_server.pod +++ b/doc/man1/s_server.pod @@ -529,11 +529,12 @@ The list should contain most wanted protocols first. Protocol names are printable ASCII strings, for example "http/1.1" or "spdy/3". -=item B<-max_early_data> +=item B<-max_early_data arg> Change the default maximum early data bytes that are specified for new sessions and any incoming early data (when used in conjunction with the B<-early_data> -flag). The default value is approximately 16k. +flag). The default value is approximately 16k. The argument must be an integer +greater than or equal to 0. =item B<-early_data> diff --git a/doc/man3/SSL_read_early.pod b/doc/man3/SSL_read_early_data.pod similarity index 99% rename from doc/man3/SSL_read_early.pod rename to doc/man3/SSL_read_early_data.pod index d34ed95b89..4567de7480 100644 --- a/doc/man3/SSL_read_early.pod +++ b/doc/man3/SSL_read_early_data.pod @@ -42,7 +42,7 @@ Early data has weaker security properties than other data sent over an SSL/TLS connection. In particular the data does not have forward secrecy and there are no guarantees that the same early data was not replayed across multiple connections. For this reason extreme care should be exercised when using early -data. +data. For specific details, consult the TLS 1.3 specification. When a server receives early data it may opt to immediately respond by sending application data back to the client. Data sent by the server at this stage is -- GitLab