crypto/threads_pthread.c: refactor all atomics fallbacks for type safety
[openssl.git] / doc / man3 / SSL_CTX_set_cipher_list.pod
1 =pod
2
3 =head1 NAME
4
5 SSL_CTX_set_cipher_list,
6 SSL_set_cipher_list,
7 SSL_CTX_set_ciphersuites,
8 SSL_set_ciphersuites,
9 OSSL_default_cipher_list,
10 OSSL_default_ciphersuites
11 - choose list of available SSL_CIPHERs
12
13 =head1 SYNOPSIS
14
15  #include <openssl/ssl.h>
16
17  int SSL_CTX_set_cipher_list(SSL_CTX *ctx, const char *str);
18  int SSL_set_cipher_list(SSL *ssl, const char *str);
19
20  int SSL_CTX_set_ciphersuites(SSL_CTX *ctx, const char *str);
21  int SSL_set_ciphersuites(SSL *s, const char *str);
22
23  const char *OSSL_default_cipher_list(void);
24  const char *OSSL_default_ciphersuites(void);
25
26 =head1 DESCRIPTION
27
28 SSL_CTX_set_cipher_list() sets the list of available ciphers (TLSv1.2 and below)
29 for B<ctx> using the control string B<str>. The format of the string is described
30 in L<openssl-ciphers(1)>. The list of ciphers is inherited by all
31 B<ssl> objects created from B<ctx>. This function does not impact TLSv1.3
32 ciphersuites. Use SSL_CTX_set_ciphersuites() to configure those.
33
34 SSL_set_cipher_list() sets the list of ciphers (TLSv1.2 and below) only for
35 B<ssl>.
36
37 SSL_CTX_set_ciphersuites() is used to configure the available TLSv1.3
38 ciphersuites for B<ctx>. This is a simple colon (":") separated list of TLSv1.3
39 ciphersuite names in order of preference. Valid TLSv1.3 ciphersuite names are:
40
41 =over 4
42
43 =item TLS_AES_128_GCM_SHA256
44
45 =item TLS_AES_256_GCM_SHA384
46
47 =item TLS_CHACHA20_POLY1305_SHA256
48
49 =item TLS_AES_128_CCM_SHA256
50
51 =item TLS_AES_128_CCM_8_SHA256
52
53 =back
54
55 An empty list is permissible. The default value for the this setting is:
56
57 "TLS_AES_256_GCM_SHA384:TLS_CHACHA20_POLY1305_SHA256:TLS_AES_128_GCM_SHA256"
58
59 SSL_set_ciphersuites() is the same as SSL_CTX_set_ciphersuites() except it
60 configures the ciphersuites for B<ssl>.
61
62 OSSL_default_cipher_list() returns the default cipher string for TLSv1.2
63 (and earlier) ciphers. OSSL_default_ciphersuites() returns the default
64 cipher string for TLSv1.3 ciphersuites.
65
66 =head1 NOTES
67
68 The control string B<str> for SSL_CTX_set_cipher_list(), SSL_set_cipher_list(),
69 SSL_CTX_set_ciphersuites() and SSL_set_ciphersuites() should be universally
70 usable and not depend on details of the library configuration (ciphers compiled
71 in). Thus no syntax checking takes place. Items that are not recognized, because
72 the corresponding ciphers are not compiled in or because they are mistyped,
73 are simply ignored. Failure is only flagged if no ciphers could be collected
74 at all.
75
76 It should be noted, that inclusion of a cipher to be used into the list is
77 a necessary condition. On the client side, the inclusion into the list is
78 also sufficient unless the security level excludes it. On the server side,
79 additional restrictions apply. All ciphers have additional requirements.
80 ADH ciphers don't need a certificate, but DH-parameters must have been set.
81 All other ciphers need a corresponding certificate and key.
82
83 An RSA cipher can only be chosen, when an RSA certificate is available.
84 RSA ciphers using DHE need a certificate and key and additional DH-parameters
85 (see L<SSL_CTX_set_tmp_dh_callback(3)>).
86
87 A DSA cipher can only be chosen, when a DSA certificate is available.
88 DSA ciphers always use DH key exchange and therefore need DH-parameters
89 (see L<SSL_CTX_set_tmp_dh_callback(3)>).
90
91 When these conditions are not met for any cipher in the list (e.g. a
92 client only supports export RSA ciphers with an asymmetric key length
93 of 512 bits and the server is not configured to use temporary RSA
94 keys), the "no shared cipher" (SSL_R_NO_SHARED_CIPHER) error is generated
95 and the handshake will fail.
96
97 OSSL_default_cipher_list() and OSSL_default_ciphersuites() replace
98 SSL_DEFAULT_CIPHER_LIST and TLS_DEFAULT_CIPHERSUITES, respectively. The
99 cipher list defines are deprecated as of 3.0.
100
101 =head1 RETURN VALUES
102
103 SSL_CTX_set_cipher_list() and SSL_set_cipher_list() return 1 if any cipher
104 could be selected and 0 on complete failure.
105
106 SSL_CTX_set_ciphersuites() and SSL_set_ciphersuites() return 1 if the requested
107 ciphersuite list was configured, and 0 otherwise.
108
109 =head1 SEE ALSO
110
111 L<ssl(7)>, L<SSL_get_ciphers(3)>,
112 L<SSL_CTX_use_certificate(3)>,
113 L<SSL_CTX_set_tmp_dh_callback(3)>,
114 L<openssl-ciphers(1)>
115
116 =head1 HISTORY
117
118 OSSL_default_cipher_list() and OSSL_default_ciphersites() are new in 3.0.
119
120 =head1 COPYRIGHT
121
122 Copyright 2000-2021 The OpenSSL Project Authors. All Rights Reserved.
123
124 Licensed under the Apache License 2.0 (the "License").  You may not use
125 this file except in compliance with the License.  You can obtain a copy
126 in the file LICENSE in the source distribution or at
127 L<https://www.openssl.org/source/license.html>.
128
129 =cut