File 3811-ssl-Clarify-doc.patch of Package erlang (Revision d343fc579c8ccd2842bf83436ee72284)
Currently displaying revision d343fc579c8ccd2842bf83436ee72284 , Show latest
xxxxxxxxxx
1
From 8fe0df1d04c11d1dd884f06a26a8eebb5c487b44 Mon Sep 17 00:00:00 2001
2
From: Ingela Anderton Andin <ingela@erlang.org>
3
Date: Wed, 28 Sep 2022 16:36:45 +0200
4
Subject: [PATCH] ssl: Clarify doc
5
6
---
7
lib/ssl/doc/src/ssl.xml | 12 +++++++++---
8
1 file changed, 9 insertions(+), 3 deletions(-)
9
10
diff --git a/lib/ssl/doc/src/ssl.xml b/lib/ssl/doc/src/ssl.xml
11
index dc946d6564..77b31a661a 100644
12
--- a/lib/ssl/doc/src/ssl.xml
13
+++ b/lib/ssl/doc/src/ssl.xml
14
15
<datatype>
16
<name since="OTP 25.2" name="server_certificate_authorities"/>
17
<desc>
18
- <p>When used with <c>{verify, verify_peer}</c> on the server with TLS-1.3, the certificate
19
- authorities extension will be included or excluded from the certificate request. The Default
20
- is true.</p>
21
+ <p>Determines if a TLS-1.3 server should include the authorities
22
+ extension in its certificate request message that will be sent if the
23
+ option <c>verify</c> is set to <c>verify_peer</c>. Defaults to <c>true</c>.</p>
24
+
25
+ <p>A reason to exclude the extension would be if the server wants to communicate with clients
26
+ incapable of sending complete certificate chains that adhere to the
27
+ extension, but the server still has the capability to recreate a chain that it can verify.</p>
28
+
29
</desc>
30
+
31
</datatype>
32
33
<datatype>
34
--
35
2.35.3
36
37