Use correct C format for keysets.pl
[openssl.git] / doc / apps / ciphers.pod
1 =pod
2
3 =head1 NAME
4
5 ciphers - SSL cipher display and cipher list tool.
6
7 =head1 SYNOPSIS
8
9 B<openssl> B<ciphers>
10 [B<-help>]
11 [B<-s>]
12 [B<-v>]
13 [B<-V>]
14 [B<-ssl3>]
15 [B<-tls1>]
16 [B<-tls1_1>]
17 [B<-tls1_2>]
18 [B<-s>]
19 [B<-psk>]
20 [B<-stdname>]
21 [B<cipherlist>]
22
23 =head1 DESCRIPTION
24
25 The B<ciphers> command converts textual OpenSSL cipher lists into ordered
26 SSL cipher preference lists. It can be used as a test tool to determine
27 the appropriate cipherlist.
28
29 =head1 COMMAND OPTIONS
30
31 =over 4
32
33 =item B<-help>
34
35 Print a usage message.
36
37 =item B<-s>
38
39 Only list supported ciphers: those consistent with the security level, and
40 minimum and maximum protocol version.
41 This is closer to the actual cipher list an application will support.
42
43 This program does not set up support for SRP and so SRP based ciphers will
44 always be excluded when using this option.
45 PSK ciphers are not enabled by default and it requires the B<-psk> to enable
46 them.
47 It also does not change the default list of supported signature algorithms.
48
49 On a server the list of supported ciphers might also exclude other ciphers
50 depending on the configured certificates and presence of DH parameters.
51
52 If this option is not used then all ciphers that match the cipherlist will be
53 listed.
54
55 =item B<-psk>
56
57 When combined with B<-s> includes cipher suites which require PSK.
58
59 =item B<-v>
60
61 Verbose output: For each ciphersuite, list details as provided by
62 L<SSL_CIPHER_description(3)>.
63
64 =item B<-V>
65
66 Like B<-v>, but include the official cipher suite values in hex.
67
68 =item B<-tls1_2>
69
70 In combination with the B<-s> option, list the ciphers which would be used if
71 TLSv1.2 were negotiated.
72
73 =item B<-ssl3>
74
75 In combination with the B<-s> option, list the ciphers which would be used if
76 SSLv3 were negotiated.
77
78 =item B<-tls1>
79
80 In combination with the B<-s> option, list the ciphers which would be used if
81 TLSv1 were negotiated.
82
83 =item B<-tls1_1>
84
85 In combination with the B<-s> option, list the ciphers which would be used if
86 TLSv1.1 were negotiated.
87
88 =item B<-stdname>
89
90 precede each ciphersuite by its standard name: only available is OpenSSL
91 is built with tracing enabled (B<enable-ssl-trace> argument to Configure).
92
93 =item B<cipherlist>
94
95 a cipher list to convert to a cipher preference list. If it is not included
96 then the default cipher list will be used. The format is described below.
97
98 =back
99
100 =head1 CIPHER LIST FORMAT
101
102 The cipher list consists of one or more I<cipher strings> separated by colons.
103 Commas or spaces are also acceptable separators but colons are normally used.
104
105 The actual cipher string can take several different forms.
106
107 It can consist of a single cipher suite such as B<RC4-SHA>.
108
109 It can represent a list of cipher suites containing a certain algorithm, or
110 cipher suites of a certain type. For example B<SHA1> represents all ciphers
111 suites using the digest algorithm SHA1 and B<SSLv3> represents all SSL v3
112 algorithms.
113
114 Lists of cipher suites can be combined in a single cipher string using the
115 B<+> character. This is used as a logical B<and> operation. For example
116 B<SHA1+DES> represents all cipher suites containing the SHA1 B<and> the DES
117 algorithms.
118
119 Each cipher string can be optionally preceded by the characters B<!>,
120 B<-> or B<+>.
121
122 If B<!> is used then the ciphers are permanently deleted from the list.
123 The ciphers deleted can never reappear in the list even if they are
124 explicitly stated.
125
126 If B<-> is used then the ciphers are deleted from the list, but some or
127 all of the ciphers can be added again by later options.
128
129 If B<+> is used then the ciphers are moved to the end of the list. This
130 option doesn't add any new ciphers it just moves matching existing ones.
131
132 If none of these characters is present then the string is just interpreted
133 as a list of ciphers to be appended to the current preference list. If the
134 list includes any ciphers already present they will be ignored: that is they
135 will not moved to the end of the list.
136
137 The cipher string B<@STRENGTH> can be used at any point to sort the current
138 cipher list in order of encryption algorithm key length.
139
140 The cipher string B<@SECLEVEL=n> can be used at any point to set the security
141 level to B<n>.
142
143 =head1 CIPHER STRINGS
144
145 The following is a list of all permitted cipher strings and their meanings.
146
147 =over 4
148
149 =item B<DEFAULT>
150
151 The default cipher list.
152 This is determined at compile time and is normally
153 B<ALL:!COMPLEMENTOFDEFAULT:!eNULL>.
154 When used, this must be the first cipherstring specified.
155
156 =item B<COMPLEMENTOFDEFAULT>
157
158 The ciphers included in B<ALL>, but not enabled by default. Currently
159 this includes all RC4 and anonymous ciphers. Note that this rule does
160 not cover B<eNULL>, which is not included by B<ALL> (use B<COMPLEMENTOFALL> if
161 necessary). Note that RC4 based ciphersuites are not built into OpenSSL by
162 default (see the enable-weak-ssl-ciphers option to Configure).
163
164 =item B<ALL>
165
166 All cipher suites except the B<eNULL> ciphers (which must be explicitly enabled
167 if needed).
168 As of OpenSSL 1.0.0, the B<ALL> cipher suites are sensibly ordered by default.
169
170 =item B<COMPLEMENTOFALL>
171
172 The cipher suites not enabled by B<ALL>, currently B<eNULL>.
173
174 =item B<HIGH>
175
176 "high" encryption cipher suites. This currently means those with key lengths
177 larger than 128 bits, and some cipher suites with 128-bit keys.
178
179 =item B<MEDIUM>
180
181 "medium" encryption cipher suites, currently some of those using 128 bit
182 encryption.
183
184 =item B<LOW>
185
186 "low" encryption cipher suites, currently those using 64 or 56 bit
187 encryption algorithms but excluding export cipher suites.  All these
188 ciphersuites have been removed as of OpenSSL 1.1.0.
189
190 =item B<eNULL>, B<NULL>
191
192 The "NULL" ciphers that is those offering no encryption. Because these offer no
193 encryption at all and are a security risk they are not enabled via either the
194 B<DEFAULT> or B<ALL> cipher strings.
195 Be careful when building cipherlists out of lower-level primitives such as
196 B<kRSA> or B<aECDSA> as these do overlap with the B<eNULL> ciphers.  When in
197 doubt, include B<!eNULL> in your cipherlist.
198
199 =item B<aNULL>
200
201 The cipher suites offering no authentication. This is currently the anonymous
202 DH algorithms and anonymous ECDH algorithms. These cipher suites are vulnerable
203 to "man in the middle" attacks and so their use is discouraged.
204 These are excluded from the B<DEFAULT> ciphers, but included in the B<ALL>
205 ciphers.
206 Be careful when building cipherlists out of lower-level primitives such as
207 B<kDHE> or B<AES> as these do overlap with the B<aNULL> ciphers.
208 When in doubt, include B<!aNULL> in your cipherlist.
209
210 =item B<kRSA>, B<aRSA>, B<RSA>
211
212 Cipher suites using RSA key exchange, authentication or either respectively.
213
214 =item B<kDHr>, B<kDHd>, B<kDH>
215
216 Cipher suites using static DH key agreement and DH certificates signed by CAs
217 with RSA and DSS keys or either respectively.
218 All these cipher suites have been removed in OpenSSL 1.1.0.
219
220 =item B<kDHE>, B<kEDH>, B<DH>
221
222 Cipher suites using ephemeral DH key agreement, including anonymous cipher
223 suites.
224
225 =item B<DHE>, B<EDH>
226
227 Cipher suites using authenticated ephemeral DH key agreement.
228
229 =item B<ADH>
230
231 Anonymous DH cipher suites, note that this does not include anonymous Elliptic
232 Curve DH (ECDH) cipher suites.
233
234 =item B<kEECDH>, B<kECDHE>, B<ECDH>
235
236 Cipher suites using ephemeral ECDH key agreement, including anonymous
237 cipher suites.
238
239 =item B<ECDHE>, B<EECDH>
240
241 Cipher suites using authenticated ephemeral ECDH key agreement.
242
243 =item B<AECDH>
244
245 Anonymous Elliptic Curve Diffie Hellman cipher suites.
246
247 =item B<aDSS>, B<DSS>
248
249 Cipher suites using DSS authentication, i.e. the certificates carry DSS keys.
250
251 =item B<aDH>
252
253 Cipher suites effectively using DH authentication, i.e. the certificates carry
254 DH keys.
255 All these cipher suites have been removed in OpenSSL 1.1.0.
256
257 =item B<aECDSA>, B<ECDSA>
258
259 Cipher suites using ECDSA authentication, i.e. the certificates carry ECDSA
260 keys.
261
262 =item B<TLSv1.2>, B<TLSv1.0>, B<SSLv3>
263
264 Lists ciphersuites which are only supported in at least TLS v1.2, TLS v1.0 or
265 SSL v3.0 respectively.
266 Note: there are no ciphersuites specific to TLS v1.1.
267 Since this is only the minimum version, if, for example, TLSv1.0 is negotiated
268 then both TLSv1.0 and SSLv3.0 ciphersuites are available.
269
270 Note: these cipher strings B<do not> change the negotiated version of SSL or
271 TLS, they only affect the list of available cipher suites.
272
273 =item B<AES128>, B<AES256>, B<AES>
274
275 cipher suites using 128 bit AES, 256 bit AES or either 128 or 256 bit AES.
276
277 =item B<AESGCM>
278
279 AES in Galois Counter Mode (GCM): these ciphersuites are only supported
280 in TLS v1.2.
281
282 =item B<AESCCM>, B<AESCCM8>
283
284 AES in Cipher Block Chaining - Message Authentication Mode (CCM): these
285 ciphersuites are only supported in TLS v1.2. B<AESCCM> references CCM
286 cipher suites using both 16 and 8 octet Integrity Check Value (ICV)
287 while B<AESCCM8> only references 8 octet ICV.
288
289 =item B<CAMELLIA128>, B<CAMELLIA256>, B<CAMELLIA>
290
291 cipher suites using 128 bit CAMELLIA, 256 bit CAMELLIA or either 128 or 256 bit
292 CAMELLIA.
293
294 =item B<CHACHA20>
295
296 cipher suites using ChaCha20.
297
298 =item B<3DES>
299
300 cipher suites using triple DES.
301
302 =item B<DES>
303
304 Cipher suites using DES (not triple DES).
305 All these cipher suites have been removed in OpenSSL 1.1.0.
306
307 =item B<RC4>
308
309 Cipher suites using RC4.
310
311 =item B<RC2>
312
313 Cipher suites using RC2.
314
315 =item B<IDEA>
316
317 Cipher suites using IDEA.
318
319 =item B<SEED>
320
321 Cipher suites using SEED.
322
323 =item B<MD5>
324
325 Cipher suites using MD5.
326
327 =item B<SHA1>, B<SHA>
328
329 Cipher suites using SHA1.
330
331 =item B<SHA256>, B<SHA384>
332
333 Ciphersuites using SHA256 or SHA384.
334
335 =item B<aGOST>
336
337 Cipher suites using GOST R 34.10 (either 2001 or 94) for authentication
338 (needs an engine supporting GOST algorithms).
339
340 =item B<aGOST01>
341
342 Cipher suites using GOST R 34.10-2001 authentication.
343
344 =item B<kGOST>
345
346 Cipher suites, using VKO 34.10 key exchange, specified in the RFC 4357.
347
348 =item B<GOST94>
349
350 Cipher suites, using HMAC based on GOST R 34.11-94.
351
352 =item B<GOST89MAC>
353
354 Cipher suites using GOST 28147-89 MAC B<instead of> HMAC.
355
356 =item B<PSK>
357
358 All cipher suites using pre-shared keys (PSK).
359
360 =item B<kPSK>, B<kECDHEPSK>, B<kDHEPSK>, B<kRSAPSK>
361
362 Cipher suites using PSK key exchange, ECDHE_PSK, DHE_PSK or RSA_PSK.
363
364 =item B<aPSK>
365
366 Cipher suites using PSK authentication (currently all PSK modes apart from
367 RSA_PSK).
368
369 =item B<SUITEB128>, B<SUITEB128ONLY>, B<SUITEB192>
370
371 Enables suite B mode of operation using 128 (permitting 192 bit mode by peer)
372 128 bit (not permitting 192 bit by peer) or 192 bit level of security
373 respectively.
374 If used these cipherstrings should appear first in the cipher
375 list and anything after them is ignored.
376 Setting Suite B mode has additional consequences required to comply with
377 RFC6460.
378 In particular the supported signature algorithms is reduced to support only
379 ECDSA and SHA256 or SHA384, only the elliptic curves P-256 and P-384 can be
380 used and only the two suite B compliant ciphersuites
381 (ECDHE-ECDSA-AES128-GCM-SHA256 and ECDHE-ECDSA-AES256-GCM-SHA384) are
382 permissible.
383
384 =back
385
386 =head1 CIPHER SUITE NAMES
387
388 The following lists give the SSL or TLS cipher suites names from the
389 relevant specification and their OpenSSL equivalents. It should be noted,
390 that several cipher suite names do not include the authentication used,
391 e.g. DES-CBC3-SHA. In these cases, RSA authentication is used.
392
393 =head2 SSL v3.0 cipher suites.
394
395  SSL_RSA_WITH_NULL_MD5                   NULL-MD5
396  SSL_RSA_WITH_NULL_SHA                   NULL-SHA
397  SSL_RSA_WITH_RC4_128_MD5                RC4-MD5
398  SSL_RSA_WITH_RC4_128_SHA                RC4-SHA
399  SSL_RSA_WITH_IDEA_CBC_SHA               IDEA-CBC-SHA
400  SSL_RSA_WITH_3DES_EDE_CBC_SHA           DES-CBC3-SHA
401
402  SSL_DH_DSS_WITH_3DES_EDE_CBC_SHA        DH-DSS-DES-CBC3-SHA
403  SSL_DH_RSA_WITH_3DES_EDE_CBC_SHA        DH-RSA-DES-CBC3-SHA
404  SSL_DHE_DSS_WITH_3DES_EDE_CBC_SHA       DHE-DSS-DES-CBC3-SHA
405  SSL_DHE_RSA_WITH_3DES_EDE_CBC_SHA       DHE-RSA-DES-CBC3-SHA
406
407  SSL_DH_anon_WITH_RC4_128_MD5            ADH-RC4-MD5
408  SSL_DH_anon_WITH_3DES_EDE_CBC_SHA       ADH-DES-CBC3-SHA
409
410  SSL_FORTEZZA_KEA_WITH_NULL_SHA          Not implemented.
411  SSL_FORTEZZA_KEA_WITH_FORTEZZA_CBC_SHA  Not implemented.
412  SSL_FORTEZZA_KEA_WITH_RC4_128_SHA       Not implemented.
413
414 =head2 TLS v1.0 cipher suites.
415
416  TLS_RSA_WITH_NULL_MD5                   NULL-MD5
417  TLS_RSA_WITH_NULL_SHA                   NULL-SHA
418  TLS_RSA_WITH_RC4_128_MD5                RC4-MD5
419  TLS_RSA_WITH_RC4_128_SHA                RC4-SHA
420  TLS_RSA_WITH_IDEA_CBC_SHA               IDEA-CBC-SHA
421  TLS_RSA_WITH_3DES_EDE_CBC_SHA           DES-CBC3-SHA
422
423  TLS_DH_DSS_WITH_3DES_EDE_CBC_SHA        Not implemented.
424  TLS_DH_RSA_WITH_3DES_EDE_CBC_SHA        Not implemented.
425  TLS_DHE_DSS_WITH_3DES_EDE_CBC_SHA       DHE-DSS-DES-CBC3-SHA
426  TLS_DHE_RSA_WITH_3DES_EDE_CBC_SHA       DHE-RSA-DES-CBC3-SHA
427
428  TLS_DH_anon_WITH_RC4_128_MD5            ADH-RC4-MD5
429  TLS_DH_anon_WITH_3DES_EDE_CBC_SHA       ADH-DES-CBC3-SHA
430
431 =head2 AES ciphersuites from RFC3268, extending TLS v1.0
432
433  TLS_RSA_WITH_AES_128_CBC_SHA            AES128-SHA
434  TLS_RSA_WITH_AES_256_CBC_SHA            AES256-SHA
435
436  TLS_DH_DSS_WITH_AES_128_CBC_SHA         DH-DSS-AES128-SHA
437  TLS_DH_DSS_WITH_AES_256_CBC_SHA         DH-DSS-AES256-SHA
438  TLS_DH_RSA_WITH_AES_128_CBC_SHA         DH-RSA-AES128-SHA
439  TLS_DH_RSA_WITH_AES_256_CBC_SHA         DH-RSA-AES256-SHA
440
441  TLS_DHE_DSS_WITH_AES_128_CBC_SHA        DHE-DSS-AES128-SHA
442  TLS_DHE_DSS_WITH_AES_256_CBC_SHA        DHE-DSS-AES256-SHA
443  TLS_DHE_RSA_WITH_AES_128_CBC_SHA        DHE-RSA-AES128-SHA
444  TLS_DHE_RSA_WITH_AES_256_CBC_SHA        DHE-RSA-AES256-SHA
445
446  TLS_DH_anon_WITH_AES_128_CBC_SHA        ADH-AES128-SHA
447  TLS_DH_anon_WITH_AES_256_CBC_SHA        ADH-AES256-SHA
448
449 =head2 Camellia ciphersuites from RFC4132, extending TLS v1.0
450
451  TLS_RSA_WITH_CAMELLIA_128_CBC_SHA      CAMELLIA128-SHA
452  TLS_RSA_WITH_CAMELLIA_256_CBC_SHA      CAMELLIA256-SHA
453
454  TLS_DH_DSS_WITH_CAMELLIA_128_CBC_SHA   DH-DSS-CAMELLIA128-SHA
455  TLS_DH_DSS_WITH_CAMELLIA_256_CBC_SHA   DH-DSS-CAMELLIA256-SHA
456  TLS_DH_RSA_WITH_CAMELLIA_128_CBC_SHA   DH-RSA-CAMELLIA128-SHA
457  TLS_DH_RSA_WITH_CAMELLIA_256_CBC_SHA   DH-RSA-CAMELLIA256-SHA
458
459  TLS_DHE_DSS_WITH_CAMELLIA_128_CBC_SHA  DHE-DSS-CAMELLIA128-SHA
460  TLS_DHE_DSS_WITH_CAMELLIA_256_CBC_SHA  DHE-DSS-CAMELLIA256-SHA
461  TLS_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA  DHE-RSA-CAMELLIA128-SHA
462  TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA  DHE-RSA-CAMELLIA256-SHA
463
464  TLS_DH_anon_WITH_CAMELLIA_128_CBC_SHA  ADH-CAMELLIA128-SHA
465  TLS_DH_anon_WITH_CAMELLIA_256_CBC_SHA  ADH-CAMELLIA256-SHA
466
467 =head2 SEED ciphersuites from RFC4162, extending TLS v1.0
468
469  TLS_RSA_WITH_SEED_CBC_SHA              SEED-SHA
470
471  TLS_DH_DSS_WITH_SEED_CBC_SHA           DH-DSS-SEED-SHA
472  TLS_DH_RSA_WITH_SEED_CBC_SHA           DH-RSA-SEED-SHA
473
474  TLS_DHE_DSS_WITH_SEED_CBC_SHA          DHE-DSS-SEED-SHA
475  TLS_DHE_RSA_WITH_SEED_CBC_SHA          DHE-RSA-SEED-SHA
476
477  TLS_DH_anon_WITH_SEED_CBC_SHA          ADH-SEED-SHA
478
479 =head2 GOST ciphersuites from draft-chudov-cryptopro-cptls, extending TLS v1.0
480
481 Note: these ciphers require an engine which including GOST cryptographic
482 algorithms, such as the B<ccgost> engine, included in the OpenSSL distribution.
483
484  TLS_GOSTR341094_WITH_28147_CNT_IMIT GOST94-GOST89-GOST89
485  TLS_GOSTR341001_WITH_28147_CNT_IMIT GOST2001-GOST89-GOST89
486  TLS_GOSTR341094_WITH_NULL_GOSTR3411 GOST94-NULL-GOST94
487  TLS_GOSTR341001_WITH_NULL_GOSTR3411 GOST2001-NULL-GOST94
488
489 =head2 Additional Export 1024 and other cipher suites
490
491 Note: these ciphers can also be used in SSL v3.
492
493  TLS_DHE_DSS_WITH_RC4_128_SHA            DHE-DSS-RC4-SHA
494
495 =head2 Elliptic curve cipher suites.
496
497  TLS_ECDHE_RSA_WITH_NULL_SHA             ECDHE-RSA-NULL-SHA
498  TLS_ECDHE_RSA_WITH_RC4_128_SHA          ECDHE-RSA-RC4-SHA
499  TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA     ECDHE-RSA-DES-CBC3-SHA
500  TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA      ECDHE-RSA-AES128-SHA
501  TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA      ECDHE-RSA-AES256-SHA
502
503  TLS_ECDHE_ECDSA_WITH_NULL_SHA           ECDHE-ECDSA-NULL-SHA
504  TLS_ECDHE_ECDSA_WITH_RC4_128_SHA        ECDHE-ECDSA-RC4-SHA
505  TLS_ECDHE_ECDSA_WITH_3DES_EDE_CBC_SHA   ECDHE-ECDSA-DES-CBC3-SHA
506  TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA    ECDHE-ECDSA-AES128-SHA
507  TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA    ECDHE-ECDSA-AES256-SHA
508
509  TLS_ECDH_anon_WITH_NULL_SHA             AECDH-NULL-SHA
510  TLS_ECDH_anon_WITH_RC4_128_SHA          AECDH-RC4-SHA
511  TLS_ECDH_anon_WITH_3DES_EDE_CBC_SHA     AECDH-DES-CBC3-SHA
512  TLS_ECDH_anon_WITH_AES_128_CBC_SHA      AECDH-AES128-SHA
513  TLS_ECDH_anon_WITH_AES_256_CBC_SHA      AECDH-AES256-SHA
514
515 =head2 TLS v1.2 cipher suites
516
517  TLS_RSA_WITH_NULL_SHA256                  NULL-SHA256
518
519  TLS_RSA_WITH_AES_128_CBC_SHA256           AES128-SHA256
520  TLS_RSA_WITH_AES_256_CBC_SHA256           AES256-SHA256
521  TLS_RSA_WITH_AES_128_GCM_SHA256           AES128-GCM-SHA256
522  TLS_RSA_WITH_AES_256_GCM_SHA384           AES256-GCM-SHA384
523
524  TLS_DH_RSA_WITH_AES_128_CBC_SHA256        DH-RSA-AES128-SHA256
525  TLS_DH_RSA_WITH_AES_256_CBC_SHA256        DH-RSA-AES256-SHA256
526  TLS_DH_RSA_WITH_AES_128_GCM_SHA256        DH-RSA-AES128-GCM-SHA256
527  TLS_DH_RSA_WITH_AES_256_GCM_SHA384        DH-RSA-AES256-GCM-SHA384
528
529  TLS_DH_DSS_WITH_AES_128_CBC_SHA256        DH-DSS-AES128-SHA256
530  TLS_DH_DSS_WITH_AES_256_CBC_SHA256        DH-DSS-AES256-SHA256
531  TLS_DH_DSS_WITH_AES_128_GCM_SHA256        DH-DSS-AES128-GCM-SHA256
532  TLS_DH_DSS_WITH_AES_256_GCM_SHA384        DH-DSS-AES256-GCM-SHA384
533
534  TLS_DHE_RSA_WITH_AES_128_CBC_SHA256       DHE-RSA-AES128-SHA256
535  TLS_DHE_RSA_WITH_AES_256_CBC_SHA256       DHE-RSA-AES256-SHA256
536  TLS_DHE_RSA_WITH_AES_128_GCM_SHA256       DHE-RSA-AES128-GCM-SHA256
537  TLS_DHE_RSA_WITH_AES_256_GCM_SHA384       DHE-RSA-AES256-GCM-SHA384
538
539  TLS_DHE_DSS_WITH_AES_128_CBC_SHA256       DHE-DSS-AES128-SHA256
540  TLS_DHE_DSS_WITH_AES_256_CBC_SHA256       DHE-DSS-AES256-SHA256
541  TLS_DHE_DSS_WITH_AES_128_GCM_SHA256       DHE-DSS-AES128-GCM-SHA256
542  TLS_DHE_DSS_WITH_AES_256_GCM_SHA384       DHE-DSS-AES256-GCM-SHA384
543
544  TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256     ECDHE-RSA-AES128-SHA256
545  TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384     ECDHE-RSA-AES256-SHA384
546  TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256     ECDHE-RSA-AES128-GCM-SHA256
547  TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384     ECDHE-RSA-AES256-GCM-SHA384
548
549  TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256   ECDHE-ECDSA-AES128-SHA256
550  TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384   ECDHE-ECDSA-AES256-SHA384
551  TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256   ECDHE-ECDSA-AES128-GCM-SHA256
552  TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384   ECDHE-ECDSA-AES256-GCM-SHA384
553
554  TLS_DH_anon_WITH_AES_128_CBC_SHA256       ADH-AES128-SHA256
555  TLS_DH_anon_WITH_AES_256_CBC_SHA256       ADH-AES256-SHA256
556  TLS_DH_anon_WITH_AES_128_GCM_SHA256       ADH-AES128-GCM-SHA256
557  TLS_DH_anon_WITH_AES_256_GCM_SHA384       ADH-AES256-GCM-SHA384
558
559  RSA_WITH_AES_128_CCM                      AES128-CCM
560  RSA_WITH_AES_256_CCM                      AES256-CCM
561  DHE_RSA_WITH_AES_128_CCM                  DHE-RSA-AES128-CCM
562  DHE_RSA_WITH_AES_256_CCM                  DHE-RSA-AES256-CCM
563  RSA_WITH_AES_128_CCM_8                    AES128-CCM8
564  RSA_WITH_AES_256_CCM_8                    AES256-CCM8
565  DHE_RSA_WITH_AES_128_CCM_8                DHE-RSA-AES128-CCM8
566  DHE_RSA_WITH_AES_256_CCM_8                DHE-RSA-AES256-CCM8
567  ECDHE_ECDSA_WITH_AES_128_CCM              ECDHE-ECDSA-AES128-CCM
568  ECDHE_ECDSA_WITH_AES_256_CCM              ECDHE-ECDSA-AES256-CCM
569  ECDHE_ECDSA_WITH_AES_128_CCM_8            ECDHE-ECDSA-AES128-CCM8
570  ECDHE_ECDSA_WITH_AES_256_CCM_8            ECDHE-ECDSA-AES256-CCM8
571
572 =head2 Camellia HMAC-Based ciphersuites from RFC6367, extending TLS v1.2
573
574  TLS_ECDHE_ECDSA_WITH_CAMELLIA_128_CBC_SHA256 ECDHE-ECDSA-CAMELLIA128-SHA256
575  TLS_ECDHE_ECDSA_WITH_CAMELLIA_256_CBC_SHA384 ECDHE-ECDSA-CAMELLIA256-SHA384
576  TLS_ECDHE_RSA_WITH_CAMELLIA_128_CBC_SHA256   ECDHE-RSA-CAMELLIA128-SHA256
577  TLS_ECDHE_RSA_WITH_CAMELLIA_256_CBC_SHA384   ECDHE-RSA-CAMELLIA256-SHA384
578
579 =head2 Pre shared keying (PSK) ciphersuites
580
581  PSK_WITH_NULL_SHA                         PSK-NULL-SHA
582  DHE_PSK_WITH_NULL_SHA                     DHE-PSK-NULL-SHA
583  RSA_PSK_WITH_NULL_SHA                     RSA-PSK-NULL-SHA
584
585  PSK_WITH_RC4_128_SHA                      PSK-RC4-SHA
586  PSK_WITH_3DES_EDE_CBC_SHA                 PSK-3DES-EDE-CBC-SHA
587  PSK_WITH_AES_128_CBC_SHA                  PSK-AES128-CBC-SHA
588  PSK_WITH_AES_256_CBC_SHA                  PSK-AES256-CBC-SHA
589
590  DHE_PSK_WITH_RC4_128_SHA                  DHE-PSK-RC4-SHA
591  DHE_PSK_WITH_3DES_EDE_CBC_SHA             DHE-PSK-3DES-EDE-CBC-SHA
592  DHE_PSK_WITH_AES_128_CBC_SHA              DHE-PSK-AES128-CBC-SHA
593  DHE_PSK_WITH_AES_256_CBC_SHA              DHE-PSK-AES256-CBC-SHA
594
595  RSA_PSK_WITH_RC4_128_SHA                  RSA-PSK-RC4-SHA
596  RSA_PSK_WITH_3DES_EDE_CBC_SHA             RSA-PSK-3DES-EDE-CBC-SHA
597  RSA_PSK_WITH_AES_128_CBC_SHA              RSA-PSK-AES128-CBC-SHA
598  RSA_PSK_WITH_AES_256_CBC_SHA              RSA-PSK-AES256-CBC-SHA
599
600  PSK_WITH_AES_128_GCM_SHA256               PSK-AES128-GCM-SHA256
601  PSK_WITH_AES_256_GCM_SHA384               PSK-AES256-GCM-SHA384
602  DHE_PSK_WITH_AES_128_GCM_SHA256           DHE-PSK-AES128-GCM-SHA256
603  DHE_PSK_WITH_AES_256_GCM_SHA384           DHE-PSK-AES256-GCM-SHA384
604  RSA_PSK_WITH_AES_128_GCM_SHA256           RSA-PSK-AES128-GCM-SHA256
605  RSA_PSK_WITH_AES_256_GCM_SHA384           RSA-PSK-AES256-GCM-SHA384
606
607  PSK_WITH_AES_128_CBC_SHA256               PSK-AES128-CBC-SHA256
608  PSK_WITH_AES_256_CBC_SHA384               PSK-AES256-CBC-SHA384
609  PSK_WITH_NULL_SHA256                      PSK-NULL-SHA256
610  PSK_WITH_NULL_SHA384                      PSK-NULL-SHA384
611  DHE_PSK_WITH_AES_128_CBC_SHA256           DHE-PSK-AES128-CBC-SHA256
612  DHE_PSK_WITH_AES_256_CBC_SHA384           DHE-PSK-AES256-CBC-SHA384
613  DHE_PSK_WITH_NULL_SHA256                  DHE-PSK-NULL-SHA256
614  DHE_PSK_WITH_NULL_SHA384                  DHE-PSK-NULL-SHA384
615  RSA_PSK_WITH_AES_128_CBC_SHA256           RSA-PSK-AES128-CBC-SHA256
616  RSA_PSK_WITH_AES_256_CBC_SHA384           RSA-PSK-AES256-CBC-SHA384
617  RSA_PSK_WITH_NULL_SHA256                  RSA-PSK-NULL-SHA256
618  RSA_PSK_WITH_NULL_SHA384                  RSA-PSK-NULL-SHA384
619  PSK_WITH_AES_128_GCM_SHA256               PSK-AES128-GCM-SHA256
620  PSK_WITH_AES_256_GCM_SHA384               PSK-AES256-GCM-SHA384
621
622  ECDHE_PSK_WITH_RC4_128_SHA                ECDHE-PSK-RC4-SHA
623  ECDHE_PSK_WITH_3DES_EDE_CBC_SHA           ECDHE-PSK-3DES-EDE-CBC-SHA
624  ECDHE_PSK_WITH_AES_128_CBC_SHA            ECDHE-PSK-AES128-CBC-SHA
625  ECDHE_PSK_WITH_AES_256_CBC_SHA            ECDHE-PSK-AES256-CBC-SHA
626  ECDHE_PSK_WITH_AES_128_CBC_SHA256         ECDHE-PSK-AES128-CBC-SHA256
627  ECDHE_PSK_WITH_AES_256_CBC_SHA384         ECDHE-PSK-AES256-CBC-SHA384
628  ECDHE_PSK_WITH_NULL_SHA                   ECDHE-PSK-NULL-SHA
629  ECDHE_PSK_WITH_NULL_SHA256                ECDHE-PSK-NULL-SHA256
630  ECDHE_PSK_WITH_NULL_SHA384                ECDHE-PSK-NULL-SHA384
631
632  PSK_WITH_CAMELLIA_128_CBC_SHA256          PSK-CAMELLIA128-SHA256
633  PSK_WITH_CAMELLIA_256_CBC_SHA384          PSK-CAMELLIA256-SHA384
634
635  DHE_PSK_WITH_CAMELLIA_128_CBC_SHA256      DHE-PSK-CAMELLIA128-SHA256
636  DHE_PSK_WITH_CAMELLIA_256_CBC_SHA384      DHE-PSK-CAMELLIA256-SHA384
637
638  RSA_PSK_WITH_CAMELLIA_128_CBC_SHA256      RSA-PSK-CAMELLIA128-SHA256
639  RSA_PSK_WITH_CAMELLIA_256_CBC_SHA384      RSA-PSK-CAMELLIA256-SHA384
640
641  ECDHE_PSK_WITH_CAMELLIA_128_CBC_SHA256    ECDHE-PSK-CAMELLIA128-SHA256
642  ECDHE_PSK_WITH_CAMELLIA_256_CBC_SHA384    ECDHE-PSK-CAMELLIA256-SHA384
643
644  PSK_WITH_AES_128_CCM                      PSK-AES128-CCM
645  PSK_WITH_AES_256_CCM                      PSK-AES256-CCM
646  DHE_PSK_WITH_AES_128_CCM                  DHE-PSK-AES128-CCM
647  DHE_PSK_WITH_AES_256_CCM                  DHE-PSK-AES256-CCM
648  PSK_WITH_AES_128_CCM_8                    PSK-AES128-CCM8
649  PSK_WITH_AES_256_CCM_8                    PSK-AES256-CCM8
650  DHE_PSK_WITH_AES_128_CCM_8                DHE-PSK-AES128-CCM8
651  DHE_PSK_WITH_AES_256_CCM_8                DHE-PSK-AES256-CCM8
652
653 =head2 ChaCha20-Poly1305 cipher suites from draft-ietf-tls-chacha20-poly1305-04, extending TLS v1.2
654
655  TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256      ECDHE-RSA-CHACHA20-POLY1305
656  TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256    ECDHE-ECDSA-CHACHA20-POLY1305
657  TLS_DHE_RSA_WITH_CHACHA20_POLY1305_SHA256        DHE-RSA-CHACHA20-POLY1305
658  TLS_PSK_WITH_CHACHA20_POLY1305_SHA256            PSK-CHACHA20-POLY1305
659  TLS_ECDHE_PSK_WITH_CHACHA20_POLY1305_SHA256      ECDHE-PSK-CHACHA20-POLY1305
660  TLS_DHE_PSK_WITH_CHACHA20_POLY1305_SHA256        DHE-PSK-CHACHA20-POLY1305
661  TLS_RSA_PSK_WITH_CHACHA20_POLY1305_SHA256        RSA-PSK-CHACHA20-POLY1305
662
663 =head1 NOTES
664
665 Some compiled versions of OpenSSL may not include all the ciphers
666 listed here because some ciphers were excluded at compile time.
667
668 =head1 EXAMPLES
669
670 Verbose listing of all OpenSSL ciphers including NULL ciphers:
671
672  openssl ciphers -v 'ALL:eNULL'
673
674 Include all ciphers except NULL and anonymous DH then sort by
675 strength:
676
677  openssl ciphers -v 'ALL:!ADH:@STRENGTH'
678
679 Include all ciphers except ones with no encryption (eNULL) or no
680 authentication (aNULL):
681
682  openssl ciphers -v 'ALL:!aNULL'
683
684 Include only 3DES ciphers and then place RSA ciphers last:
685
686  openssl ciphers -v '3DES:+RSA'
687
688 Include all RC4 ciphers but leave out those without authentication:
689
690  openssl ciphers -v 'RC4:!COMPLEMENTOFDEFAULT'
691
692 Include all ciphers with RSA authentication but leave out ciphers without
693 encryption.
694
695  openssl ciphers -v 'RSA:!COMPLEMENTOFALL'
696
697 Set security level to 2 and display all ciphers consistent with level 2:
698
699  openssl ciphers -s -v 'ALL:@SECLEVEL=2'
700
701 =head1 SEE ALSO
702
703 L<s_client(1)>, L<s_server(1)>, L<ssl(3)>
704
705 =head1 HISTORY
706
707 The B<-V> option for the B<ciphers> command was added in OpenSSL 1.0.0.
708
709 =cut