Skip to content

Commit 63b2297

Browse files
committed
doc: Document that ssl_ciphers does not affect TLS 1.3
TLS 1.3 uses a different way of specifying ciphers and a different OpenSSL API. PostgreSQL currently does not support setting those ciphers. For now, just document this. In the future, support for this might be added somehow. Reviewed-by: Jonathan S. Katz <jkatz@postgresql.org> Reviewed-by: Tom Lane <tgl@sss.pgh.pa.us>
1 parent 8bf4e69 commit 63b2297

File tree

1 file changed

+16
-10
lines changed

1 file changed

+16
-10
lines changed

doc/src/sgml/config.sgml

Lines changed: 16 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1221,16 +1221,22 @@ include_dir 'conf.d'
12211221
</term>
12221222
<listitem>
12231223
<para>
1224-
Specifies a list of <acronym>SSL</acronym> cipher suites that are allowed to be
1225-
used on secure connections. See
1226-
the <citerefentry><refentrytitle>ciphers</refentrytitle></citerefentry> manual page
1227-
in the <application>OpenSSL</application> package for the syntax of this setting
1228-
and a list of supported values.
1229-
This parameter can only be set in the <filename>postgresql.conf</filename>
1230-
file or on the server command line.
1231-
The default value is <literal>HIGH:MEDIUM:+3DES:!aNULL</literal>. The
1232-
default is usually a reasonable choice unless you have specific
1233-
security requirements.
1224+
Specifies a list of <acronym>SSL</acronym> cipher suites that are
1225+
allowed to be used by SSL connections. See the
1226+
<citerefentry><refentrytitle>ciphers</refentrytitle></citerefentry>
1227+
manual page in the <application>OpenSSL</application> package for the
1228+
syntax of this setting and a list of supported values. Only
1229+
connections using TLS version 1.2 and lower are affected. There is
1230+
currently no setting that controls the cipher choices used by TLS
1231+
version 1.3 connections. The default value is
1232+
<literal>HIGH:MEDIUM:+3DES:!aNULL</literal>. The default is usually a
1233+
reasonable choice unless you have specific security requirements.
1234+
</para>
1235+
1236+
<para>
1237+
This parameter can only be set in the
1238+
<filename>postgresql.conf</filename> file or on the server command
1239+
line.
12341240
</para>
12351241

12361242
<para>

0 commit comments

Comments
 (0)