Deleted Added
full compact
ciphers.pod (238405) ciphers.pod (269682)
1=pod
2
3=head1 NAME
4
5ciphers - SSL cipher display and cipher list tool.
6
7=head1 SYNOPSIS
8

--- 22 unchanged lines hidden (view full) ---

31authentication, encryption and mac algorithms used along with any key size
32restrictions and whether the algorithm is classed as an "export" cipher.
33Note that without the B<-v> option, ciphers may seem to appear twice
34in a cipher list; this is when similar ciphers are available for
35SSL v2 and for SSL v3/TLS v1.
36
37=item B<-V>
38
1=pod
2
3=head1 NAME
4
5ciphers - SSL cipher display and cipher list tool.
6
7=head1 SYNOPSIS
8

--- 22 unchanged lines hidden (view full) ---

31authentication, encryption and mac algorithms used along with any key size
32restrictions and whether the algorithm is classed as an "export" cipher.
33Note that without the B<-v> option, ciphers may seem to appear twice
34in a cipher list; this is when similar ciphers are available for
35SSL v2 and for SSL v3/TLS v1.
36
37=item B<-V>
38
39Like B<-V>, but include cipher suite codes in output (hex format).
39Like B<-v>, but include cipher suite codes in output (hex format).
40
41=item B<-ssl3>
42
43only include SSL v3 ciphers.
44
45=item B<-ssl2>
46
47only include SSL v2 ciphers.

--- 63 unchanged lines hidden (view full) ---

111
112the default cipher list. This is determined at compile time and, as of OpenSSL
1131.0.0, is normally B<ALL:!aNULL:!eNULL>. This must be the first cipher string
114specified.
115
116=item B<COMPLEMENTOFDEFAULT>
117
118the ciphers included in B<ALL>, but not enabled by default. Currently
40
41=item B<-ssl3>
42
43only include SSL v3 ciphers.
44
45=item B<-ssl2>
46
47only include SSL v2 ciphers.

--- 63 unchanged lines hidden (view full) ---

111
112the default cipher list. This is determined at compile time and, as of OpenSSL
1131.0.0, is normally B<ALL:!aNULL:!eNULL>. This must be the first cipher string
114specified.
115
116=item B<COMPLEMENTOFDEFAULT>
117
118the ciphers included in B<ALL>, but not enabled by default. Currently
119this is B<ADH>. Note that this rule does not cover B<eNULL>, which is
120not included by B (use B if necessary).
119this is B<ADH> and B<AECDH>. Note that this rule does not cover B<eNULL>,
120which is not included by B<ALL> (use B<COMPLEMENTOFALL> if necessary).
121
122=item B<ALL>
123
124all cipher suites except the B<eNULL> ciphers which must be explicitly enabled;
125as of OpenSSL, the B<ALL> cipher suites are reasonably ordered by default
126
127=item B<COMPLEMENTOFALL>
128

--- 31 unchanged lines hidden (view full) ---

160
161the "NULL" ciphers that is those offering no encryption. Because these offer no
162encryption at all and are a security risk they are disabled unless explicitly
163included.
164
165=item B<aNULL>
166
167the cipher suites offering no authentication. This is currently the anonymous
121
122=item B<ALL>
123
124all cipher suites except the B<eNULL> ciphers which must be explicitly enabled;
125as of OpenSSL, the B<ALL> cipher suites are reasonably ordered by default
126
127=item B<COMPLEMENTOFALL>
128

--- 31 unchanged lines hidden (view full) ---

160
161the "NULL" ciphers that is those offering no encryption. Because these offer no
162encryption at all and are a security risk they are disabled unless explicitly
163included.
164
165=item B<aNULL>
166
167the cipher suites offering no authentication. This is currently the anonymous
168DH algorithms. These cipher suites are vulnerable to a "man in the middle"
169attack and so their use is normally discouraged.
168DH algorithms and anonymous ECDH algorithms. These cipher suites are vulnerable
169to a "man in the middle" attack and so their use is normally discouraged.
170
171=item B<kRSA>, B<RSA>
172
173cipher suites using RSA key exchange.
174
170
171=item B<kRSA>, B<RSA>
172
173cipher suites using RSA key exchange.
174
175=item B<kDHr>, B<kDHd>, B<kDH>
176
177cipher suites using DH key agreement and DH certificates signed by CAs with RSA
178and DSS keys or either respectively. Not implemented.
179
175=item B<kEDH>
176
180=item B<kEDH>
181
177cipher suites using ephemeral DH key agreement.
182cipher suites using ephemeral DH key agreement, including anonymous cipher
183suites.
178
184
179=item B<kDHr>, B<kDHd>
185=item B<EDH>
180
186
181cipher suites using DH key agreement and DH certificates signed by CAs with RSA
182and DSS keys respectively. Not implemented.
187cipher suites using authenticated ephemeral DH key agreement.
183
188
189=item B<ADH>
190
191anonymous DH cipher suites, note that this does not include anonymous Elliptic
192Curve DH (ECDH) cipher suites.
193
194=item B<DH>
195
196cipher suites using DH, including anonymous DH, ephemeral DH and fixed DH.
197
198=item B<kECDHr>, B<kECDHe>, B<kECDH>
199
200cipher suites using fixed ECDH key agreement signed by CAs with RSA and ECDSA
201keys or either respectively.
202
203=item B<kEECDH>
204
205cipher suites using ephemeral ECDH key agreement, including anonymous
206cipher suites.
207
208=item B<EECDHE>
209
210cipher suites using authenticated ephemeral ECDH key agreement.
211
212=item B<AECDH>
213
214anonymous Elliptic Curve Diffie Hellman cipher suites.
215
216=item B<ECDH>
217
218cipher suites using ECDH key exchange, including anonymous, ephemeral and
219fixed ECDH.
220
184=item B<aRSA>
185
186cipher suites using RSA authentication, i.e. the certificates carry RSA keys.
187
188=item B<aDSS>, B<DSS>
189
190cipher suites using DSS authentication, i.e. the certificates carry DSS keys.
191
192=item B<aDH>
193
194cipher suites effectively using DH authentication, i.e. the certificates carry
195DH keys. Not implemented.
196
221=item B<aRSA>
222
223cipher suites using RSA authentication, i.e. the certificates carry RSA keys.
224
225=item B<aDSS>, B<DSS>
226
227cipher suites using DSS authentication, i.e. the certificates carry DSS keys.
228
229=item B<aDH>
230
231cipher suites effectively using DH authentication, i.e. the certificates carry
232DH keys. Not implemented.
233
234=item B<aECDH>
235
236cipher suites effectively using ECDH authentication, i.e. the certificates
237carry ECDH keys.
238
239=item B<aECDSA>, B<ECDSA>
240
241cipher suites using ECDSA authentication, i.e. the certificates carry ECDSA
242keys.
243
197=item B<kFZA>, B<aFZA>, B<eFZA>, B<FZA>
198
199ciphers suites using FORTEZZA key exchange, authentication, encryption or all
200FORTEZZA algorithms. Not implemented.
201
244=item B<kFZA>, B<aFZA>, B<eFZA>, B<FZA>
245
246ciphers suites using FORTEZZA key exchange, authentication, encryption or all
247FORTEZZA algorithms. Not implemented.
248
202=item B, B, B
249=item B<TLSv1.2>, B<TLSv1>, B<SSLv3>, B<SSLv2>
203
250
204TLS v1.0, SSL v3.0 or SSL v2.0 cipher suites respectively.
251TLS v1.2, TLS v1.0, SSL v3.0 or SSL v2.0 cipher suites respectively. Note:
252there are no ciphersuites specific to TLS v1.1.
205
253
206=item B<DH>
254=item B<AES128>, B<AES256>, B<AES>
207
255
208cipher suites using DH, including anonymous DH.
256cipher suites using 128 bit AES, 256 bit AES or either 128 or 256 bit AES.
209
257
210=item B<ADH>
258=item B<AESGCM>
211
259
212anonymous DH cipher suites.
260AES in Galois Counter Mode (GCM): these ciphersuites are only supported
261in TLS v1.2.
213
262
214=item B<AES>
263=item B<CAMELLIA128>, B<CAMELLIA256>, B<CAMELLIA>
215
264
216cipher suites using AES.
265cipher suites using 128 bit CAMELLIA, 256 bit CAMELLIA or either 128 or 256 bit
266CAMELLIA.
217
267
218=item B<CAMELLIA>
219
220cipher suites using Camellia.
221
222=item B<3DES>
223
224cipher suites using triple DES.
225
226=item B<DES>
227
228cipher suites using DES (not triple DES).
229

--- 16 unchanged lines hidden (view full) ---

246=item B<MD5>
247
248cipher suites using MD5.
249
250=item B<SHA1>, B<SHA>
251
252cipher suites using SHA1.
253
268=item B<3DES>
269
270cipher suites using triple DES.
271
272=item B<DES>
273
274cipher suites using DES (not triple DES).
275

--- 16 unchanged lines hidden (view full) ---

292=item B<MD5>
293
294cipher suites using MD5.
295
296=item B<SHA1>, B<SHA>
297
298cipher suites using SHA1.
299
300=item B<SHA256>, B<SHA384>
301
302ciphersuites using SHA256 or SHA384.
303
254=item B<aGOST>
255
256cipher suites using GOST R 34.10 (either 2001 or 94) for authenticaction
257(needs an engine supporting GOST algorithms).
258
259=item B<aGOST01>
260
261cipher suites using GOST R 34.10-2001 authentication.

--- 10 unchanged lines hidden (view full) ---

272=item B<GOST94>
273
274cipher suites, using HMAC based on GOST R 34.11-94.
275
276=item B<GOST89MAC>
277
278cipher suites using GOST 28147-89 MAC B<instead of> HMAC.
279
304=item B<aGOST>
305
306cipher suites using GOST R 34.10 (either 2001 or 94) for authenticaction
307(needs an engine supporting GOST algorithms).
308
309=item B<aGOST01>
310
311cipher suites using GOST R 34.10-2001 authentication.

--- 10 unchanged lines hidden (view full) ---

322=item B<GOST94>
323
324cipher suites, using HMAC based on GOST R 34.11-94.
325
326=item B<GOST89MAC>
327
328cipher suites using GOST 28147-89 MAC B<instead of> HMAC.
329
330=item B<PSK>
280
331
332cipher suites using pre-shared keys (PSK).
333
281=back
282
283=head1 CIPHER SUITE NAMES
284
285The following lists give the SSL or TLS cipher suites names from the
286relevant specification and their OpenSSL equivalents. It should be noted,
287that several cipher suite names do not include the authentication used,
288e.g. DES-CBC3-SHA. In these cases, RSA authentication is used.

--- 129 unchanged lines hidden (view full) ---

418Note: these ciphers can also be used in SSL v3.
419
420 TLS_RSA_EXPORT1024_WITH_DES_CBC_SHA EXP1024-DES-CBC-SHA
421 TLS_RSA_EXPORT1024_WITH_RC4_56_SHA EXP1024-RC4-SHA
422 TLS_DHE_DSS_EXPORT1024_WITH_DES_CBC_SHA EXP1024-DHE-DSS-DES-CBC-SHA
423 TLS_DHE_DSS_EXPORT1024_WITH_RC4_56_SHA EXP1024-DHE-DSS-RC4-SHA
424 TLS_DHE_DSS_WITH_RC4_128_SHA DHE-DSS-RC4-SHA
425
334=back
335
336=head1 CIPHER SUITE NAMES
337
338The following lists give the SSL or TLS cipher suites names from the
339relevant specification and their OpenSSL equivalents. It should be noted,
340that several cipher suite names do not include the authentication used,
341e.g. DES-CBC3-SHA. In these cases, RSA authentication is used.

--- 129 unchanged lines hidden (view full) ---

471Note: these ciphers can also be used in SSL v3.
472
473 TLS_RSA_EXPORT1024_WITH_DES_CBC_SHA EXP1024-DES-CBC-SHA
474 TLS_RSA_EXPORT1024_WITH_RC4_56_SHA EXP1024-RC4-SHA
475 TLS_DHE_DSS_EXPORT1024_WITH_DES_CBC_SHA EXP1024-DHE-DSS-DES-CBC-SHA
476 TLS_DHE_DSS_EXPORT1024_WITH_RC4_56_SHA EXP1024-DHE-DSS-RC4-SHA
477 TLS_DHE_DSS_WITH_RC4_128_SHA DHE-DSS-RC4-SHA
478
426=head2 SSL v2.0 cipher suites.
479=head2 Elliptic curve cipher suites.
427
480
481 TLS_ECDH_RSA_WITH_NULL_SHA ECDH-RSA-NULL-SHA
482 TLS_ECDH_RSA_WITH_RC4_128_SHA ECDH-RSA-RC4-SHA
483 TLS_ECDH_RSA_WITH_3DES_EDE_CBC_SHA ECDH-RSA-DES-CBC3-SHA
484 TLS_ECDH_RSA_WITH_AES_128_CBC_SHA ECDH-RSA-AES128-SHA
485 TLS_ECDH_RSA_WITH_AES_256_CBC_SHA ECDH-RSA-AES256-SHA
486
487 TLS_ECDH_ECDSA_WITH_NULL_SHA ECDH-ECDSA-NULL-SHA
488 TLS_ECDH_ECDSA_WITH_RC4_128_SHA ECDH-ECDSA-RC4-SHA
489 TLS_ECDH_ECDSA_WITH_3DES_EDE_CBC_SHA ECDH-ECDSA-DES-CBC3-SHA
490 TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA ECDH-ECDSA-AES128-SHA
491 TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA ECDH-ECDSA-AES256-SHA
492
493 TLS_ECDHE_RSA_WITH_NULL_SHA ECDHE-RSA-NULL-SHA
494 TLS_ECDHE_RSA_WITH_RC4_128_SHA ECDHE-RSA-RC4-SHA
495 TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA ECDHE-RSA-DES-CBC3-SHA
496 TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA ECDHE-RSA-AES128-SHA
497 TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA ECDHE-RSA-AES256-SHA
498
499 TLS_ECDHE_ECDSA_WITH_NULL_SHA ECDHE-ECDSA-NULL-SHA
500 TLS_ECDHE_ECDSA_WITH_RC4_128_SHA ECDHE-ECDSA-RC4-SHA
501 TLS_ECDHE_ECDSA_WITH_3DES_EDE_CBC_SHA ECDHE-ECDSA-DES-CBC3-SHA
502 TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA ECDHE-ECDSA-AES128-SHA
503 TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA ECDHE-ECDSA-AES256-SHA
504
505 TLS_ECDH_anon_WITH_NULL_SHA AECDH-NULL-SHA
506 TLS_ECDH_anon_WITH_RC4_128_SHA AECDH-RC4-SHA
507 TLS_ECDH_anon_WITH_3DES_EDE_CBC_SHA AECDH-DES-CBC3-SHA
508 TLS_ECDH_anon_WITH_AES_128_CBC_SHA AECDH-AES128-SHA
509 TLS_ECDH_anon_WITH_AES_256_CBC_SHA AECDH-AES256-SHA
510
511=head2 TLS v1.2 cipher suites
512
513 TLS_RSA_WITH_NULL_SHA256 NULL-SHA256
514
515 TLS_RSA_WITH_AES_128_CBC_SHA256 AES128-SHA256
516 TLS_RSA_WITH_AES_256_CBC_SHA256 AES256-SHA256
517 TLS_RSA_WITH_AES_128_GCM_SHA256 AES128-GCM-SHA256
518 TLS_RSA_WITH_AES_256_GCM_SHA384 AES256-GCM-SHA384
519
520 TLS_DH_RSA_WITH_AES_128_CBC_SHA256 Not implemented.
521 TLS_DH_RSA_WITH_AES_256_CBC_SHA256 Not implemented.
522 TLS_DH_RSA_WITH_AES_128_GCM_SHA256 Not implemented.
523 TLS_DH_RSA_WITH_AES_256_GCM_SHA384 Not implemented.
524
525 TLS_DH_DSS_WITH_AES_128_CBC_SHA256 Not implemented.
526 TLS_DH_DSS_WITH_AES_256_CBC_SHA256 Not implemented.
527 TLS_DH_DSS_WITH_AES_128_GCM_SHA256 Not implemented.
528 TLS_DH_DSS_WITH_AES_256_GCM_SHA384 Not implemented.
529
530 TLS_DHE_RSA_WITH_AES_128_CBC_SHA256 DHE-RSA-AES128-SHA256
531 TLS_DHE_RSA_WITH_AES_256_CBC_SHA256 DHE-RSA-AES256-SHA256
532 TLS_DHE_RSA_WITH_AES_128_GCM_SHA256 DHE-RSA-AES128-GCM-SHA256
533 TLS_DHE_RSA_WITH_AES_256_GCM_SHA384 DHE-RSA-AES256-GCM-SHA384
534
535 TLS_DHE_DSS_WITH_AES_128_CBC_SHA256 DHE-DSS-AES128-SHA256
536 TLS_DHE_DSS_WITH_AES_256_CBC_SHA256 DHE-DSS-AES256-SHA256
537 TLS_DHE_DSS_WITH_AES_128_GCM_SHA256 DHE-DSS-AES128-GCM-SHA256
538 TLS_DHE_DSS_WITH_AES_256_GCM_SHA384 DHE-DSS-AES256-GCM-SHA384
539
540 TLS_ECDH_RSA_WITH_AES_128_CBC_SHA256 ECDH-RSA-AES128-SHA256
541 TLS_ECDH_RSA_WITH_AES_256_CBC_SHA384 ECDH-RSA-AES256-SHA384
542 TLS_ECDH_RSA_WITH_AES_128_GCM_SHA256 ECDH-RSA-AES128-GCM-SHA256
543 TLS_ECDH_RSA_WITH_AES_256_GCM_SHA384 ECDH-RSA-AES256-GCM-SHA384
544
545 TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA256 ECDH-ECDSA-AES128-SHA256
546 TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA384 ECDH-ECDSA-AES256-SHA384
547 TLS_ECDH_ECDSA_WITH_AES_128_GCM_SHA256 ECDH-ECDSA-AES128-GCM-SHA256
548 TLS_ECDH_ECDSA_WITH_AES_256_GCM_SHA384 ECDH-ECDSA-AES256-GCM-SHA384
549
550 TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256 ECDHE-RSA-AES128-SHA256
551 TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384 ECDHE-RSA-AES256-SHA384
552 TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 ECDHE-RSA-AES128-GCM-SHA256
553 TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 ECDHE-RSA-AES256-GCM-SHA384
554
555 TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256 ECDHE-ECDSA-AES128-SHA256
556 TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384 ECDHE-ECDSA-AES256-SHA384
557 TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 ECDHE-ECDSA-AES128-GCM-SHA256
558 TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384 ECDHE-ECDSA-AES256-GCM-SHA384
559
560 TLS_DH_anon_WITH_AES_128_CBC_SHA256 ADH-AES128-SHA256
561 TLS_DH_anon_WITH_AES_256_CBC_SHA256 ADH-AES256-SHA256
562 TLS_DH_anon_WITH_AES_128_GCM_SHA256 ADH-AES128-GCM-SHA256
563 TLS_DH_anon_WITH_AES_256_GCM_SHA384 ADH-AES256-GCM-SHA384
564
565=head2 Pre shared keying (PSK) cipheruites
566
567 TLS_PSK_WITH_RC4_128_SHA PSK-RC4-SHA
568 TLS_PSK_WITH_3DES_EDE_CBC_SHA PSK-3DES-EDE-CBC-SHA
569 TLS_PSK_WITH_AES_128_CBC_SHA PSK-AES128-CBC-SHA
570 TLS_PSK_WITH_AES_256_CBC_SHA PSK-AES256-CBC-SHA
571
572=head2 Deprecated SSL v2.0 cipher suites.
573
428 SSL_CK_RC4_128_WITH_MD5 RC4-MD5
429 SSL_CK_RC4_128_EXPORT40_WITH_MD5 EXP-RC4-MD5
430 SSL_CK_RC2_128_CBC_WITH_MD5 RC2-MD5
431 SSL_CK_RC2_128_CBC_EXPORT40_WITH_MD5 EXP-RC2-MD5
432 SSL_CK_IDEA_128_CBC_WITH_MD5 IDEA-CBC-MD5
433 SSL_CK_DES_64_CBC_WITH_MD5 DES-CBC-MD5
434 SSL_CK_DES_192_EDE3_CBC_WITH_MD5 DES-CBC3-MD5
435

--- 11 unchanged lines hidden (view full) ---

447
448 openssl ciphers -v 'ALL:eNULL'
449
450Include all ciphers except NULL and anonymous DH then sort by
451strength:
452
453 openssl ciphers -v 'ALL:!ADH:@STRENGTH'
454
574 SSL_CK_RC4_128_WITH_MD5 RC4-MD5
575 SSL_CK_RC4_128_EXPORT40_WITH_MD5 EXP-RC4-MD5
576 SSL_CK_RC2_128_CBC_WITH_MD5 RC2-MD5
577 SSL_CK_RC2_128_CBC_EXPORT40_WITH_MD5 EXP-RC2-MD5
578 SSL_CK_IDEA_128_CBC_WITH_MD5 IDEA-CBC-MD5
579 SSL_CK_DES_64_CBC_WITH_MD5 DES-CBC-MD5
580 SSL_CK_DES_192_EDE3_CBC_WITH_MD5 DES-CBC3-MD5
581

--- 11 unchanged lines hidden (view full) ---

593
594 openssl ciphers -v 'ALL:eNULL'
595
596Include all ciphers except NULL and anonymous DH then sort by
597strength:
598
599 openssl ciphers -v 'ALL:!ADH:@STRENGTH'
600
601Include all ciphers except ones with no encryption (eNULL) or no
602authentication (aNULL):
603
604 openssl ciphers -v 'ALL:!aNULL'
605
455Include only 3DES ciphers and then place RSA ciphers last:
456
457 openssl ciphers -v '3DES:+RSA'
458
459Include all RC4 ciphers but leave out those without authentication:
460
461 openssl ciphers -v 'RC4:!COMPLEMENTOFDEFAULT'
462

--- 16 unchanged lines hidden ---
606Include only 3DES ciphers and then place RSA ciphers last:
607
608 openssl ciphers -v '3DES:+RSA'
609
610Include all RC4 ciphers but leave out those without authentication:
611
612 openssl ciphers -v 'RC4:!COMPLEMENTOFDEFAULT'
613

--- 16 unchanged lines hidden ---