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