Confirmed users
529
edits
(sync with github) |
(V4: https://github.com/mozilla/server-side-tls/pull/97) |
||
Line 17: | Line 17: | ||
= Recommended configurations = | = Recommended configurations = | ||
Three configurations are recommended. Pick the right configuration depending on your audience. If you do not need backward compatibility, and are building a service for modern clients only (post | Three configurations are recommended. Pick the right configuration depending on your audience. If you do not need backward compatibility, and are building a service for modern clients only (post Firefox 27/Chrome 22), then use the Modern configuration. Otherwise, prefer the Intermediate configuration. Use the Old backward compatible configuration only if your service will be accessed by very old clients, such as Windows XP IE6, or ancient libraries & bots. | ||
{| class="wikitable" | {| class="wikitable" | ||
|- | |- | ||
! Configuration !! Oldest compatible client | ! Configuration !! Oldest compatible client | ||
|- | |- | ||
| <span style="color:green;">'''Modern'''</span> || Firefox 27, Chrome 22, IE 11, Opera 14, Safari 7, Android 4.4, Java 8 | | <span style="color:green;">'''Modern'''</span> || Firefox 27, Chrome 22, IE 11, Opera 14, Safari 7, Android 4.4, Java 8 | ||
|- | |- | ||
| <span style="color:orange;">'''Intermediate'''</span> || Firefox 1, Chrome 1, IE 7, Opera 5, Safari 1, Windows XP IE8, Android 2.3, Java 7 | | <span style="color:orange;">'''Intermediate'''</span> || Firefox 1, Chrome 1, IE 7, Opera 5, Safari 1, Windows XP IE8, Android 2.3, Java 7 | ||
|- | |- | ||
| <span style="color:gray;">'''Old'''</span> || Windows XP IE6, Java 6 | | <span style="color:gray;">'''Old'''</span> || Windows XP IE6, Java 6 | ||
|} | |} | ||
Older versions of OpenSSL may not return the full list of algorithms. AES-GCM and some ECDHE are fairly recent, and not present on most versions of OpenSSL shipped with Ubuntu or RHEL. This listing below was obtained from a freshly built OpenSSL. If your version of OpenSSL is old, unavailable ciphers will be discarded automatically. Always use the full ciphersuite and let OpenSSL pick the ones it supports. | |||
The ordering of a ciphersuite is very important because it decides which algorithms are going to be selected in priority. Each level shows the list of algorithms returned by its ciphersuite. If you have to pick ciphers manually for your application, make sure you keep the ordering. | |||
== <span style="color:green;">'''Modern'''</span> compatibility == | == <span style="color:green;">'''Modern'''</span> compatibility == | ||
For services that don't need backward compatibility, the parameters below provide a higher level of security. This configuration is compatible with Firefox 27, Chrome 22, IE 11, Opera 14 | For services that don't need backward compatibility, the parameters below provide a higher level of security. This configuration is compatible with Firefox 27, Chrome 22, IE 11, Opera 14, Safari 7 and Windows Vista. | ||
* | * Ciphersuites: '''ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-SHA384:ECDHE-RSA-AES256-SHA384:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA256''' | ||
* Versions: ''' | * Versions: '''TLSv1.2''' | ||
* | * TLS curves: '''prime256v1, secp384r1, secp521r1''' | ||
* | * Certificate type: '''ECDSA''' | ||
* | * Certificate curve: '''prime256v1, secp384r1, secp521r1''' | ||
* Certificate signature: ''' | * Certificate signature: '''sha256WithRSAEncryption, ecdsa-with-SHA256, ecdsa-with-SHA384, ecdsa-with-SHA512''' | ||
* RSA key size: '''2048''' (if not ecdsa) | |||
* DH Parameter size: '''None''' (disabled entirely) | |||
* ECDH Parameter size: '''256''' | |||
* HSTS: '''max-age=15768000''' | * HSTS: '''max-age=15768000''' | ||
* Certificate switching: '''None''' | |||
<source> | |||
0xC0,0x2C - ECDHE-ECDSA-AES256-GCM-SHA384 TLSv1.2 Kx=ECDH Au=ECDSA Enc=AESGCM(256) Mac=AEAD | |||
0xC0,0x30 - ECDHE-RSA-AES256-GCM-SHA384 TLSv1.2 Kx=ECDH Au=RSA Enc=AESGCM(256) Mac=AEAD | |||
0xCC,0x14 - ECDHE-ECDSA-CHACHA20-POLY1305 TLSv1.2 Kx=ECDH Au=ECDSA Enc=ChaCha20(256) Mac=AEAD | |||
0xCC,0x13 - ECDHE-RSA-CHACHA20-POLY1305 TLSv1.2 Kx=ECDH Au=RSA Enc=ChaCha20(256) Mac=AEAD | |||
0xC0,0x2B - ECDHE-ECDSA-AES128-GCM-SHA256 TLSv1.2 Kx=ECDH Au=ECDSA Enc=AESGCM(128) Mac=AEAD | |||
0xC0,0x2F - ECDHE-RSA-AES128-GCM-SHA256 TLSv1.2 Kx=ECDH Au=RSA Enc=AESGCM(128) Mac=AEAD | |||
0xC0,0x24 - ECDHE-ECDSA-AES256-SHA384 TLSv1.2 Kx=ECDH Au=ECDSA Enc=AES(256) Mac=SHA384 | |||
0xC0,0x28 - ECDHE-RSA-AES256-SHA384 TLSv1.2 Kx=ECDH Au=RSA Enc=AES(256) Mac=SHA384 | |||
0xC0,0x23 - ECDHE-ECDSA-AES128-SHA256 TLSv1.2 Kx=ECDH Au=ECDSA Enc=AES(128) Mac=SHA256 | |||
0xC0,0x27 - ECDHE-RSA-AES128-SHA256 TLSv1.2 Kx=ECDH Au=RSA Enc=AES(128) Mac=SHA256 | |||
</source> | |||
Rationale: | |||
* AES256-GCM is prioritized above its 128 bits variant, and ChaCha20 because we assume that most modern devices support AESNI instructions and thus benefit from fast and constant time AES. | |||
* We recommend ECDSA certificates with P256 as other curves may not be supported everywhere. RSA signatures on ECDSA certificates are permitted because very few CAs sign with ECDSA at the moment. | |||
* DHE is removed entirely because it is slow in comparison with ECDHE, and all modern clients support elliptic curve key exchanges. | |||
* SHA1 signature algorithm is removed in favor of SHA384 for AES256 and SHA256 for AES128. | |||
== <span style="color:orange;">'''Intermediate'''</span> compatibility (default) == | == <span style="color:orange;">'''Intermediate'''</span> compatibility (default) == | ||
For services that don't need compatibility with legacy clients (mostly WinXP), but still need to support a wide range of clients, this configuration is recommended. It is is compatible with Firefox 1, Chrome 1, IE 7, Opera 5 and Safari 1. | For services that don't need compatibility with legacy clients (mostly WinXP), but still need to support a wide range of clients, this configuration is recommended. It is is compatible with Firefox 1, Chrome 1, IE 7, Opera 5 and Safari 1. | ||
* | * Ciphersuites: '''ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA256:ECDHE-ECDSA-AES128-SHA:ECDHE-RSA-AES256-SHA384:ECDHE-RSA-AES128-SHA:ECDHE-ECDSA-AES256-SHA384:ECDHE-ECDSA-AES256-SHA:ECDHE-RSA-AES256-SHA:DHE-RSA-AES128-SHA256:DHE-RSA-AES128-SHA:DHE-RSA-AES256-SHA256:DHE-RSA-AES256-SHA:ECDHE-ECDSA-DES-CBC3-SHA:ECDHE-RSA-DES-CBC3-SHA:EDH-RSA-DES-CBC3-SHA:AES128-GCM-SHA256:AES256-GCM-SHA384:AES128-SHA256:AES256-SHA256:AES128-SHA:AES256-SHA:DES-CBC3-SHA:!DSS''' | ||
* Versions: '''TLSv1, TLSv1.1, TLSv1 | * Versions: '''TLSv1.2, TLSv1.1, TLSv1''' | ||
* TLS curves: '''prime256v1, secp384r1, secp521r1''' | |||
* Certificate type: '''RSA''' | |||
* Certificate curve: ''''None''' | |||
* Certificate signature: '''sha256WithRSAEncryption''' | |||
* RSA key size: '''2048''' | * RSA key size: '''2048''' | ||
* DH Parameter size: '''2048''' | * DH Parameter size: '''2048''' | ||
* | * ECDH Parameter size: '''256''' | ||
* Certificate | * HSTS: '''max-age=15768000''' | ||
* Certificate switching: '''None''' | |||
<source> | |||
0xCC,0x14 - ECDHE-ECDSA-CHACHA20-POLY1305 TLSv1.2 Kx=ECDH Au=ECDSA Enc=ChaCha20(256) Mac=AEAD | |||
0xCC,0x13 - ECDHE-RSA-CHACHA20-POLY1305 TLSv1.2 Kx=ECDH Au=RSA Enc=ChaCha20(256) Mac=AEAD | |||
0xC0,0x2B - ECDHE-ECDSA-AES128-GCM-SHA256 TLSv1.2 Kx=ECDH Au=ECDSA Enc=AESGCM(128) Mac=AEAD | |||
0xC0,0x2F - ECDHE-RSA-AES128-GCM-SHA256 TLSv1.2 Kx=ECDH Au=RSA Enc=AESGCM(128) Mac=AEAD | |||
0xC0,0x2C - ECDHE-ECDSA-AES256-GCM-SHA384 TLSv1.2 Kx=ECDH Au=ECDSA Enc=AESGCM(256) Mac=AEAD | |||
0xC0,0x30 - ECDHE-RSA-AES256-GCM-SHA384 TLSv1.2 Kx=ECDH Au=RSA Enc=AESGCM(256) Mac=AEAD | |||
0x00,0x9E - DHE-RSA-AES128-GCM-SHA256 TLSv1.2 Kx=DH Au=RSA Enc=AESGCM(128) Mac=AEAD | |||
0x00,0x9F - DHE-RSA-AES256-GCM-SHA384 TLSv1.2 Kx=DH Au=RSA Enc=AESGCM(256) Mac=AEAD | |||
0xC0,0x23 - ECDHE-ECDSA-AES128-SHA256 TLSv1.2 Kx=ECDH Au=ECDSA Enc=AES(128) Mac=SHA256 | |||
0xC0,0x27 - ECDHE-RSA-AES128-SHA256 TLSv1.2 Kx=ECDH Au=RSA Enc=AES(128) Mac=SHA256 | |||
0xC0,0x09 - ECDHE-ECDSA-AES128-SHA SSLv3 Kx=ECDH Au=ECDSA Enc=AES(128) Mac=SHA1 | |||
0xC0,0x28 - ECDHE-RSA-AES256-SHA384 TLSv1.2 Kx=ECDH Au=RSA Enc=AES(256) Mac=SHA384 | |||
0xC0,0x13 - ECDHE-RSA-AES128-SHA SSLv3 Kx=ECDH Au=RSA Enc=AES(128) Mac=SHA1 | |||
0xC0,0x24 - ECDHE-ECDSA-AES256-SHA384 TLSv1.2 Kx=ECDH Au=ECDSA Enc=AES(256) Mac=SHA384 | |||
0xC0,0x0A - ECDHE-ECDSA-AES256-SHA SSLv3 Kx=ECDH Au=ECDSA Enc=AES(256) Mac=SHA1 | |||
0xC0,0x14 - ECDHE-RSA-AES256-SHA SSLv3 Kx=ECDH Au=RSA Enc=AES(256) Mac=SHA1 | |||
0x00,0x67 - DHE-RSA-AES128-SHA256 TLSv1.2 Kx=DH Au=RSA Enc=AES(128) Mac=SHA256 | |||
0x00,0x33 - DHE-RSA-AES128-SHA SSLv3 Kx=DH Au=RSA Enc=AES(128) Mac=SHA1 | |||
0x00,0x6B - DHE-RSA-AES256-SHA256 TLSv1.2 Kx=DH Au=RSA Enc=AES(256) Mac=SHA256 | |||
0x00,0x39 - DHE-RSA-AES256-SHA SSLv3 Kx=DH Au=RSA Enc=AES(256) Mac=SHA1 | |||
0xC0,0x08 - ECDHE-ECDSA-DES-CBC3-SHA SSLv3 Kx=ECDH Au=ECDSA Enc=3DES(168) Mac=SHA1 | |||
0xC0,0x12 - ECDHE-RSA-DES-CBC3-SHA SSLv3 Kx=ECDH Au=RSA Enc=3DES(168) Mac=SHA1 | |||
0x00,0x16 - EDH-RSA-DES-CBC3-SHA SSLv3 Kx=DH Au=RSA Enc=3DES(168) Mac=SHA1 | |||
0x00,0x9C - AES128-GCM-SHA256 TLSv1.2 Kx=RSA Au=RSA Enc=AESGCM(128) Mac=AEAD | |||
0x00,0x9D - AES256-GCM-SHA384 TLSv1.2 Kx=RSA Au=RSA Enc=AESGCM(256) Mac=AEAD | |||
0x00,0x3C - AES128-SHA256 TLSv1.2 Kx=RSA Au=RSA Enc=AES(128) Mac=SHA256 | |||
0x00,0x3D - AES256-SHA256 TLSv1.2 Kx=RSA Au=RSA Enc=AES(256) Mac=SHA256 | |||
0x00,0x2F - AES128-SHA SSLv3 Kx=RSA Au=RSA Enc=AES(128) Mac=SHA1 | |||
0x00,0x35 - AES256-SHA SSLv3 Kx=RSA Au=RSA Enc=AES(256) Mac=SHA1 | |||
0x00,0x0A - DES-CBC3-SHA SSLv3 Kx=RSA Au=RSA Enc=3DES(168) Mac=SHA1 | |||
</source> | |||
Rationale: | |||
* ChaCha20 is prefered as the fastest and safest in-software cipher, followed but AES128. Unlike the modern configuration, we do not assume clients support AESNI and thus do not prioritize AES256 above 128 and ChaCha20. There has been discussions ([http://www.mail-archive.com/dev-tech-crypto@lists.mozilla.org/msg11247.html 1], [http://www.mail-archive.com/dev-tech-crypto@lists.mozilla.org/msg12398.html 2]) on whether AES256 extra security was worth its computing cost in software (without AESNI), and the results are far from obvious. At the moment, AES128 is preferred, because it provides good security, is really fast, and seems to be more resistant to timing attacks. | |||
* DES-CBC3-SHA and EDH-RSA-DES-CBC3-SHA are maintained for backward compatibility with clients that do not support AES. | |||
* While the goal is to support a broad range of clients, we reasonably disable a number of ciphers that have little support (such as SEED, CAMELLIA, ...). | |||
== <span style="color:gray;">'''Old'''</span> backward compatibility == | == <span style="color:gray;">'''Old'''</span> backward compatibility == | ||
Line 55: | Line 126: | ||
This is the old ciphersuite that works with all clients back to Windows XP/IE6. It should be used as a last resort only. | This is the old ciphersuite that works with all clients back to Windows XP/IE6. It should be used as a last resort only. | ||
* | * Ciphersuites: '''ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:DHE-DSS-AES128-GCM-SHA256:kEDH+AESGCM:ECDHE-RSA-AES128-SHA256:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA:ECDHE-ECDSA-AES128-SHA:ECDHE-RSA-AES256-SHA384:ECDHE-ECDSA-AES256-SHA384:ECDHE-RSA-AES256-SHA:ECDHE-ECDSA-AES256-SHA:DHE-RSA-AES128-SHA256:DHE-RSA-AES128-SHA:DHE-DSS-AES128-SHA256:DHE-RSA-AES256-SHA256:DHE-DSS-AES256-SHA:DHE-RSA-AES256-SHA:ECDHE-RSA-DES-CBC3-SHA:ECDHE-ECDSA-DES-CBC3-SHA:EDH-RSA-DES-CBC3-SHA:AES128-GCM-SHA256:AES256-GCM-SHA384:AES128-SHA256:AES256-SHA256:AES128-SHA:AES256-SHA:AES:DES-CBC3-SHA:HIGH:SEED:!aNULL:!eNULL:!EXPORT:!DES:!RC4:!MD5:!PSK:!RSAPSK:!aDH:!aECDH:!EDH-DSS-DES-CBC3-SHA:!KRB5-DES-CBC3-SHA:!SRP''' | ||
* Versions: ''' | * Versions: '''TLSv1.2, TLSv1.1, TLSv1, SSLv3''' | ||
* TLS curves: '''prime256v1, secp384r1, secp521r1''' | |||
* Certificate type: '''RSA''' | |||
* Certificate curve: ''''None''' | |||
* Certificate signature: '''sha256WithRSAEncryption''' | |||
* RSA key size: '''2048''' | * RSA key size: '''2048''' | ||
* DH Parameter size: '''1024''' | * DH Parameter size: '''1024''' | ||
* | * ECDH Parameter size: '''256''' | ||
* Certificate | * HSTS: '''max-age=15768000''' | ||
* Certificate switching: '''sha1WithRSAEncryption''' | |||
<source> | |||
0xCC,0x14 - ECDHE-ECDSA-CHACHA20-POLY1305 TLSv1.2 Kx=ECDH Au=ECDSA Enc=ChaCha20(256) Mac=AEAD | |||
0xCC,0x13 - ECDHE-RSA-CHACHA20-POLY1305 TLSv1.2 Kx=ECDH Au=RSA Enc=ChaCha20(256) Mac=AEAD | |||
0xC0,0x2F - ECDHE-RSA-AES128-GCM-SHA256 TLSv1.2 Kx=ECDH Au=RSA Enc=AESGCM(128) Mac=AEAD | |||
0xC0,0x2B - ECDHE-ECDSA-AES128-GCM-SHA256 TLSv1.2 Kx=ECDH Au=ECDSA Enc=AESGCM(128) Mac=AEAD | |||
0xC0,0x30 - ECDHE-RSA-AES256-GCM-SHA384 TLSv1.2 Kx=ECDH Au=RSA Enc=AESGCM(256) Mac=AEAD | |||
0xC0,0x2C - ECDHE-ECDSA-AES256-GCM-SHA384 TLSv1.2 Kx=ECDH Au=ECDSA Enc=AESGCM(256) Mac=AEAD | |||
0x00,0x9E - DHE-RSA-AES128-GCM-SHA256 TLSv1.2 Kx=DH Au=RSA Enc=AESGCM(128) Mac=AEAD | |||
<source | 0x00,0xA2 - DHE-DSS-AES128-GCM-SHA256 TLSv1.2 Kx=DH Au=DSS Enc=AESGCM(128) Mac=AEAD | ||
0x00,0xA3 - DHE-DSS-AES256-GCM-SHA384 TLSv1.2 Kx=DH Au=DSS Enc=AESGCM(256) Mac=AEAD | |||
0x00,0x9F - DHE-RSA-AES256-GCM-SHA384 TLSv1.2 Kx=DH Au=RSA Enc=AESGCM(256) Mac=AEAD | |||
0xC0,0x27 - ECDHE-RSA-AES128-SHA256 TLSv1.2 Kx=ECDH Au=RSA Enc=AES(128) Mac=SHA256 | |||
0xC0, | 0xC0,0x23 - ECDHE-ECDSA-AES128-SHA256 TLSv1.2 Kx=ECDH Au=ECDSA Enc=AES(128) Mac=SHA256 | ||
0xC0, | 0xC0,0x13 - ECDHE-RSA-AES128-SHA SSLv3 Kx=ECDH Au=RSA Enc=AES(128) Mac=SHA1 | ||
0xC0, | 0xC0,0x09 - ECDHE-ECDSA-AES128-SHA SSLv3 Kx=ECDH Au=ECDSA Enc=AES(128) Mac=SHA1 | ||
0xC0,0x28 - ECDHE-RSA-AES256-SHA384 TLSv1.2 Kx=ECDH Au=RSA Enc=AES(256) Mac=SHA384 | |||
0xC0,0x24 - ECDHE-ECDSA-AES256-SHA384 TLSv1.2 Kx=ECDH Au=ECDSA Enc=AES(256) Mac=SHA384 | |||
0xC0,0x14 - ECDHE-RSA-AES256-SHA SSLv3 Kx=ECDH Au=RSA Enc=AES(256) Mac=SHA1 | |||
0x00, | 0xC0,0x0A - ECDHE-ECDSA-AES256-SHA SSLv3 Kx=ECDH Au=ECDSA Enc=AES(256) Mac=SHA1 | ||
0x00,0x67 - DHE-RSA-AES128-SHA256 TLSv1.2 Kx=DH Au=RSA Enc=AES(128) Mac=SHA256 | |||
0x00,0x33 - DHE-RSA-AES128-SHA SSLv3 Kx=DH Au=RSA Enc=AES(128) Mac=SHA1 | |||
0x00,0x40 - DHE-DSS-AES128-SHA256 TLSv1.2 Kx=DH Au=DSS Enc=AES(128) Mac=SHA256 | |||
0x00,0x6B - DHE-RSA-AES256-SHA256 TLSv1.2 Kx=DH Au=RSA Enc=AES(256) Mac=SHA256 | |||
0x00,0x38 - DHE-DSS-AES256-SHA SSLv3 Kx=DH Au=DSS Enc=AES(256) Mac=SHA1 | |||
0xC0, | 0x00,0x39 - DHE-RSA-AES256-SHA SSLv3 Kx=DH Au=RSA Enc=AES(256) Mac=SHA1 | ||
0xC0, | 0xC0,0x12 - ECDHE-RSA-DES-CBC3-SHA SSLv3 Kx=ECDH Au=RSA Enc=3DES(168) Mac=SHA1 | ||
0xC0,0x08 - ECDHE-ECDSA-DES-CBC3-SHA SSLv3 Kx=ECDH Au=ECDSA Enc=3DES(168) Mac=SHA1 | |||
0x00, | 0x00,0x16 - EDH-RSA-DES-CBC3-SHA SSLv3 Kx=DH Au=RSA Enc=3DES(168) Mac=SHA1 | ||
0x00, | 0x00,0x9C - AES128-GCM-SHA256 TLSv1.2 Kx=RSA Au=RSA Enc=AESGCM(128) Mac=AEAD | ||
0x00, | 0x00,0x9D - AES256-GCM-SHA384 TLSv1.2 Kx=RSA Au=RSA Enc=AESGCM(256) Mac=AEAD | ||
0x00, | 0x00,0x3C - AES128-SHA256 TLSv1.2 Kx=RSA Au=RSA Enc=AES(128) Mac=SHA256 | ||
0x00, | 0x00,0x3D - AES256-SHA256 TLSv1.2 Kx=RSA Au=RSA Enc=AES(256) Mac=SHA256 | ||
0x00, | 0x00,0x2F - AES128-SHA SSLv3 Kx=RSA Au=RSA Enc=AES(128) Mac=SHA1 | ||
0x00,0x35 - AES256-SHA SSLv3 Kx=RSA Au=RSA Enc=AES(256) Mac=SHA1 | |||
0x00,0x6A - DHE-DSS-AES256-SHA256 TLSv1.2 Kx=DH Au=DSS Enc=AES(256) Mac=SHA256 | |||
0x00, | 0x00,0x32 - DHE-DSS-AES128-SHA SSLv3 Kx=DH Au=DSS Enc=AES(128) Mac=SHA1 | ||
0x00, | 0x00,0x0A - DES-CBC3-SHA SSLv3 Kx=RSA Au=RSA Enc=3DES(168) Mac=SHA1 | ||
0x00, | 0x00,0x9A - DHE-RSA-SEED-SHA SSLv3 Kx=DH Au=RSA Enc=SEED(128) Mac=SHA1 | ||
0x00,0x99 - DHE-DSS-SEED-SHA SSLv3 Kx=DH Au=DSS Enc=SEED(128) Mac=SHA1 | |||
0xCC,0x15 - DHE-RSA-CHACHA20-POLY1305 TLSv1.2 Kx=DH Au=RSA Enc=ChaCha20(256) Mac=AEAD | |||
0xC0,0x77 - ECDHE-RSA-CAMELLIA256-SHA384 TLSv1.2 Kx=ECDH Au=RSA Enc=Camellia(256) Mac=SHA384 | |||
0x00, | 0xC0,0x73 - ECDHE-ECDSA-CAMELLIA256-SHA384 TLSv1.2 Kx=ECDH Au=ECDSA Enc=Camellia(256) Mac=SHA384 | ||
0x00,0xC4 - DHE-RSA-CAMELLIA256-SHA256 TLSv1.2 Kx=DH Au=RSA Enc=Camellia(256) Mac=SHA256 | |||
0x00,0xC3 - DHE-DSS-CAMELLIA256-SHA256 TLSv1.2 Kx=DH Au=DSS Enc=Camellia(256) Mac=SHA256 | |||
0x00,0x88 - DHE-RSA-CAMELLIA256-SHA SSLv3 Kx=DH Au=RSA Enc=Camellia(256) Mac=SHA1 | |||
0x00, | 0x00,0x87 - DHE-DSS-CAMELLIA256-SHA SSLv3 Kx=DH Au=DSS Enc=Camellia(256) Mac=SHA1 | ||
0x00, | 0x00,0xC0 - CAMELLIA256-SHA256 TLSv1.2 Kx=RSA Au=RSA Enc=Camellia(256) Mac=SHA256 | ||
0x00,0x84 - CAMELLIA256-SHA SSLv3 Kx=RSA Au=RSA Enc=Camellia(256) Mac=SHA1 | |||
0xC0,0x76 - ECDHE-RSA-CAMELLIA128-SHA256 TLSv1.2 Kx=ECDH Au=RSA Enc=Camellia(128) Mac=SHA256 | |||
0x00, | 0xC0,0x72 - ECDHE-ECDSA-CAMELLIA128-SHA256 TLSv1.2 Kx=ECDH Au=ECDSA Enc=Camellia(128) Mac=SHA256 | ||
0x00, | 0x00,0xBE - DHE-RSA-CAMELLIA128-SHA256 TLSv1.2 Kx=DH Au=RSA Enc=Camellia(128) Mac=SHA256 | ||
0x00, | 0x00,0xBD - DHE-DSS-CAMELLIA128-SHA256 TLSv1.2 Kx=DH Au=DSS Enc=Camellia(128) Mac=SHA256 | ||
0x00, | 0x00,0x45 - DHE-RSA-CAMELLIA128-SHA SSLv3 Kx=DH Au=RSA Enc=Camellia(128) Mac=SHA1 | ||
0x00,0x44 - DHE-DSS-CAMELLIA128-SHA SSLv3 Kx=DH Au=DSS Enc=Camellia(128) Mac=SHA1 | |||
0x00,0xBA - CAMELLIA128-SHA256 TLSv1.2 Kx=RSA Au=RSA Enc=Camellia(128) Mac=SHA256 | |||
0x00,0x41 - CAMELLIA128-SHA SSLv3 Kx=RSA Au=RSA Enc=Camellia(128) Mac=SHA1 | |||
0x00,0x96 - SEED-SHA SSLv3 Kx=RSA Au=RSA Enc=SEED(128) Mac=SHA1 | |||
0x00, | |||
</source> | </source> | ||
Rationale: | |||
* You should take a hard look at your infrastructure needs before using this configuration; it is intended for special use cases only, and most servers should use the intermediate configuration instead. | |||
* SSLv3 is enabled to support WinXP SP2 clients on IE. | |||
* SHA1 certificates are authorized but only via certificate switching, meaning the server must implement custom logic to provide a SHA1 certs to old clients, and SHA256 certs to all others. More information in the "Certificates Switching" section later in this document. | |||
* Most ciphers that are not clearly broken and dangerous to use are supported | |||
= Mandatory discards = | = Mandatory discards = | ||
Line 228: | Line 258: | ||
* disable DHE altogether, relying on ECDHE for PFS if you don't support legacy clients lacking ECDHE support (see [[#DHE_and_ECDHE_support]]). | * disable DHE altogether, relying on ECDHE for PFS if you don't support legacy clients lacking ECDHE support (see [[#DHE_and_ECDHE_support]]). | ||
It is currently assumed that standardized 2048 bits DH groups provide sufficient security to resist factorization attacks. However, the careful administrator should generate a random DH group instead of using a | It is currently assumed that standardized 2048 bits DH groups provide sufficient security to resist factorization attacks. However, the careful administrator should generate a random DH group instead of using a | ||
standardized one when setting up a new server, as advised by the [https://weakdh.org|logjam] authors. | standardized one when setting up a new server, as advised by the [https://weakdh.org|logjam] authors. | ||
Line 256: | Line 286: | ||
|- | |- | ||
! Java supported !! ECDHE prioritized !! smallest DH parameter size | ! Java supported !! ECDHE prioritized !! smallest DH parameter size | ||
|- | |- | ||
| 6 || irrelevant || 1024 | | 6 || irrelevant || 1024 | ||
|- | |- | ||
| 7 || NO || 1024 | | 7 || NO || 1024 | ||
|- | |- | ||
| 7 || YES || 2048 | | 7 || YES || 2048 | ||
|- | |- | ||
| 8 || irrelevant || 2048 | | 8 || irrelevant || 2048 | ||
|} | |} | ||
Line 281: | Line 311: | ||
<pre> | <pre> | ||
Authority Information Access: | Authority Information Access: | ||
OCSP - URI:http://ocsp.startssl.com/sub/class1/server/ca | OCSP - URI:http://ocsp.startssl.com/sub/class1/server/ca | ||
</pre> | </pre> | ||
Line 330: | Line 360: | ||
Due to its experimental nature, HPKP is currently '''not''' recommended on production sites. More informations can be found on the [https://developer.mozilla.org/en-US/docs/Web/Security/Public_Key_Pinning MDN description page]. | Due to its experimental nature, HPKP is currently '''not''' recommended on production sites. More informations can be found on the [https://developer.mozilla.org/en-US/docs/Web/Security/Public_Key_Pinning MDN description page]. | ||
= | = Certificates Switching = | ||
Certificates Switching is a technique by which a server provides a different X.509 certificate to a client based on specific selection criteria. This technique is used primarily to maintain backward compatibility with very old clients, such as Internet Explorer 6 on Windows XP SP2. | |||
On XPSP2, IE6 is only able to establish connections to servers that provide a certificate signed with sha1WithRSAEncryption. Those certificates are note issued by modern CAs anymore, and all sites have been encouraged to upgrade to SHA-256 certificates. As modern browsers gradually block connections backed by SHA-1 certificates, sites that need to maintain compatibility with XPSP2 must implement certificates switching to provide a SHA-1 cert to old clients and a SHA-256 cert to modern ones. | |||
Certificate switching can be implemented in various ways. A simplistic approach is to select the certificate based on the protocol version (SHA-256 to TLS clients, SHA-1 to SSLv3 ones). A more sophisticated approach consists at looking inside the CLIENT HELLO for SHA-256 support in the "signature_algorithms" extension. | |||
Few servers currently support cert switching. It is possible to implement it using [https://jve.linuxwall.info/blog/index.php?post/2015/10/04/SHA1/SHA256-certificate-switching-with-HAProxy HAProxy], and vendors like Cloudflare propose it in their offering. | |||
= Recommended Server Configurations = | |||
All configuration samples have been moved to the configuration generator and the [[Security/TLS_Configurations]] archive. Access the generator by clicking the image below: | |||
[[Image:Server-side-tls-config-generator.png|link=https://mozilla.github.io/server-side-tls/ssl-config-generator/]] | |||
= Tools = | |||
== CipherScan == | |||
See https://github.com/jvehent/cipherscan | |||
Cipherscan is a small Bash script that connects to a target and list the preferred Ciphers. It's an easy way to test a web server for available ciphers, PFS key size, elliptic curves, support for OCSP Stapling, TLS ticket lifetime and certificate trust. | |||
<source lang="bash"> | |||
$ ./cipherscan jve.linuxwall.info | |||
.......................... | |||
prio ciphersuite protocols pfs_keysize | |||
1 ECDHE-RSA-AES128-GCM-SHA256 TLSv1.2 ECDH,P-256,256bits | |||
2 ECDHE-RSA-AES256-GCM-SHA384 TLSv1.2 ECDH,P-256,256bits | |||
3 DHE-RSA-AES256-GCM-SHA384 TLSv1.2 DH,4096bits | |||
4 DHE-RSA-AES128-GCM-SHA256 TLSv1.2 DH,4096bits | |||
<source lang="bash"> | |||
$ ./cipherscan jve.linuxwall.info | |||
.......................... | |||
prio ciphersuite protocols pfs_keysize | |||
1 ECDHE-RSA-AES128-GCM-SHA256 TLSv1.2 ECDH,P-256,256bits | |||
2 ECDHE-RSA-AES256-GCM-SHA384 TLSv1.2 ECDH,P-256,256bits | |||
3 DHE-RSA-AES256-GCM-SHA384 TLSv1.2 DH,4096bits | |||
4 DHE-RSA-AES128-GCM-SHA256 TLSv1.2 DH,4096bits | |||
5 ECDHE-RSA-AES128-SHA256 TLSv1.2 ECDH,P-256,256bits | 5 ECDHE-RSA-AES128-SHA256 TLSv1.2 ECDH,P-256,256bits | ||
6 ECDHE-RSA-AES128-SHA TLSv1,TLSv1.1,TLSv1.2 ECDH,P-256,256bits | 6 ECDHE-RSA-AES128-SHA TLSv1,TLSv1.1,TLSv1.2 ECDH,P-256,256bits | ||
Line 781: | Line 418: | ||
</source> | </source> | ||
= SSL Labs (Qualys) = | == SSL Labs (Qualys) == | ||
Available here: https://www.ssllabs.com/ssltest/ | Available here: https://www.ssllabs.com/ssltest/ | ||
Line 789: | Line 426: | ||
GlobalSign has a modified interface of SSL Labs that is interesting as well: https://sslcheck.globalsign.com/ | GlobalSign has a modified interface of SSL Labs that is interesting as well: https://sslcheck.globalsign.com/ | ||
= Attacks on SSL and TLS = | |||
== BEAST (CVE-2011-3389) == | |||
Beast is a vulnerability in the Initialization Vector (IV) of the CBC mode of AES, Camellia and a few other ciphers that use CBC mode. The attack allows a MITM attacker to recover plaintext values by encrypting the same message multiple times. | Beast is a vulnerability in the Initialization Vector (IV) of the CBC mode of AES, Camellia and a few other ciphers that use CBC mode. The attack allows a MITM attacker to recover plaintext values by encrypting the same message multiple times. | ||
Line 1,015: | Line 435: | ||
more: https://blog.torproject.org/blog/tor-and-beast-ssl-attack | more: https://blog.torproject.org/blog/tor-and-beast-ssl-attack | ||
== LUCKY13 == | |||
Lucky13 is another attack on CBC mode that listen for padding checks to decrypt ciphertext. | Lucky13 is another attack on CBC mode that listen for padding checks to decrypt ciphertext. | ||
Line 1,021: | Line 441: | ||
more: https://www.imperialviolet.org/2013/02/04/luckythirteen.html | more: https://www.imperialviolet.org/2013/02/04/luckythirteen.html | ||
== RC4 weaknesses == | |||
As of February 2015, the IETF explicitely prohibits the use of RC4: [http://www.ietf.org/rfc/rfc7465.txt RFC 7465]. | As of February 2015, the IETF explicitely prohibits the use of RC4: [http://www.ietf.org/rfc/rfc7465.txt RFC 7465]. | ||
Line 1,031: | Line 451: | ||
While 3DES provides more resistant cryptography, it is also 30 times slower and more cpu intensive than RC4. For large web infrastructure, the CPU cost of replacing RC4 with 3DES is non-zero. For this reason, we recommend that administrators evaluate their traffic patterns, and make the decision of replacing RC4 with 3DES on a per-case basis. At Mozilla, we evaluated that the impact on CPU usage is minor, and thus decided to replace RC4 with 3DES where backward compatibility is required. | While 3DES provides more resistant cryptography, it is also 30 times slower and more cpu intensive than RC4. For large web infrastructure, the CPU cost of replacing RC4 with 3DES is non-zero. For this reason, we recommend that administrators evaluate their traffic patterns, and make the decision of replacing RC4 with 3DES on a per-case basis. At Mozilla, we evaluated that the impact on CPU usage is minor, and thus decided to replace RC4 with 3DES where backward compatibility is required. | ||
The root cause of the problem is information leakage that occurs when data is compressed prior to encryption. If someone can repeatedly inject and mix arbitrary content with some sensitive and relatively predictable data, and observe the resulting encrypted stream, then he will be able to extract the unknown data from it. | The root cause of the problem is information leakage that occurs when data is compressed prior to encryption. If someone can repeatedly inject and mix arbitrary content with some sensitive and relatively predictable data, and observe the resulting encrypted stream, then he will be able to extract the unknown data from it. | ||
Line 1,037: | Line 456: | ||
more: https://community.qualys.com/blogs/securitylabs/2012/09/14/crime-information-leakage-attack-against-ssltls | more: https://community.qualys.com/blogs/securitylabs/2012/09/14/crime-information-leakage-attack-against-ssltls | ||
== BREACH == | |||
This is a more complex attack than CRIME, which does not require TLS-level compression (it still needs HTTP-level compression). | This is a more complex attack than CRIME, which does not require TLS-level compression (it still needs HTTP-level compression). | ||
Line 1,049: | Line 468: | ||
more: http://breachattack.com/ | more: http://breachattack.com/ | ||
== POODLE ([http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2014-3566 CVE-2014-3566]) == | |||
POODLE is an attack on the padding used by SSLv3. It is a significant improvement of the BEAST attack which led the cryptography community to recommend disabling SSLv3 globally. | POODLE is an attack on the padding used by SSLv3. It is a significant improvement of the BEAST attack which led the cryptography community to recommend disabling SSLv3 globally. | ||
Line 1,064: | Line 483: | ||
Our guidelines maintain support for SSLv3 in the Old configuration only. This is required for clients on Windows XP service pack 1 & 2 that do not have support for TLSv1.0. Internet Explorer and Chrome on those platforms are impacted. Mozilla wants to be reachable from very old clients, to allow them to download a better browser. Therefore, we maintain SSLv3 compatibility on a limited number of sites. But all sites that do not need that level of compatibility are encouraged to implement the Intermediate configuration | Our guidelines maintain support for SSLv3 in the Old configuration only. This is required for clients on Windows XP service pack 1 & 2 that do not have support for TLSv1.0. Internet Explorer and Chrome on those platforms are impacted. Mozilla wants to be reachable from very old clients, to allow them to download a better browser. Therefore, we maintain SSLv3 compatibility on a limited number of sites. But all sites that do not need that level of compatibility are encouraged to implement the Intermediate configuration | ||
== Logjam attack on weak Diffie-Hellman == | |||
The Logjam attack describes methods of attacking TLS servers supporting DHE export ciphers, and with weak (<= 1024 bit) Diffie Hellman groups. Modern TLS must use DH parameters of 2048 bits and above, or only use ECDHE. The modern configuration in this guide provide configurations that are not impacted by this issue. The intermediate and old configurations are impacted, and administrators are encourage to use DH parameters of 2048 bits wherever possible. | The Logjam attack describes methods of attacking TLS servers supporting DHE export ciphers, and with weak (<= 1024 bit) Diffie Hellman groups. Modern TLS must use DH parameters of 2048 bits and above, or only use ECDHE. The modern configuration in this guide provide configurations that are not impacted by this issue. The intermediate and old configurations are impacted, and administrators are encourage to use DH parameters of 2048 bits wherever possible. | ||
Line 1,115: | Line 534: | ||
| style="background-color: #9EDB58; font-weight: bold;" | TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 | | style="background-color: #9EDB58; font-weight: bold;" | TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 | ||
| style="background-color: #9EDB58; font-weight: bold;" | TLS_ECDHE_RSA_AES_256_GCM_SHA384 | | style="background-color: #9EDB58; font-weight: bold;" | TLS_ECDHE_RSA_AES_256_GCM_SHA384 | ||
| style="background-color: #9EDB58; font-weight: bold;" | | | style="background-color: #9EDB58; font-weight: bold;" | | ||
| style="background-color: #9EDB58; font-weight: bold;" | ECDHE-RSA-AES256-GCM-SHA384 | | style="background-color: #9EDB58; font-weight: bold;" | ECDHE-RSA-AES256-GCM-SHA384 | ||
|- | |- | ||
Line 1,122: | Line 541: | ||
| style="background-color: #9EDB58; font-weight: bold;" | TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384 | | style="background-color: #9EDB58; font-weight: bold;" | TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384 | ||
| style="background-color: #9EDB58; font-weight: bold;" | TLS_ECDHE_ECDSA_AES_256_GCM_SHA384 | | style="background-color: #9EDB58; font-weight: bold;" | TLS_ECDHE_ECDSA_AES_256_GCM_SHA384 | ||
| style="background-color: #9EDB58; font-weight: bold;" | | | style="background-color: #9EDB58; font-weight: bold;" | | ||
| style="background-color: #9EDB58; font-weight: bold;" | ECDHE-ECDSA-AES256-GCM-SHA384 | | style="background-color: #9EDB58; font-weight: bold;" | ECDHE-ECDSA-AES256-GCM-SHA384 | ||
|- | |- | ||
Line 1,133: | Line 552: | ||
|- | |- | ||
! scope=row | 0x00,0xA2 | ! scope=row | 0x00,0xA2 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold; text-align: center;" | 6 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_DHE_DSS_WITH_AES_128_GCM_SHA256 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_DHE_DSS_AES_128_GCM_SHA256 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_DHE_DSS_WITH_AES_128_GCM_SHA256 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | DHE-DSS-AES128-GCM-SHA256 | ||
|- | |- | ||
! scope=row | 0x00,0xA3 | ! scope=row | 0x00,0xA3 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold; text-align: center;" | 7 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_DHE_DSS_WITH_AES_256_GCM_SHA384 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_DHE_DSS_AES_256_GCM_SHA384 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | DHE-DSS-AES256-GCM-SHA384 | ||
|- | |- | ||
! scope=row | 0x00,0x9F | ! scope=row | 0x00,0x9F | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold; text-align: center;" | 8 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_DHE_RSA_WITH_AES_256_GCM_SHA384 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_DHE_RSA_AES_256_GCM_SHA384 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | DHE-RSA-AES256-GCM-SHA384 | ||
|- | |- | ||
! scope=row | 0xC0,0x27 | ! scope=row | 0xC0,0x27 | ||
Line 1,168: | Line 587: | ||
|- | |- | ||
! scope=row | 0xC0,0x13 | ! scope=row | 0xC0,0x13 | ||
| style="background-color: # | | style="background-color: #DBC158; font-weight: bold; text-align: center;" | 11 | ||
| style="background-color: # | | style="background-color: #DBC158; font-weight: bold;" | TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA | ||
| style="background-color: # | | style="background-color: #DBC158; font-weight: bold;" | TLS_ECDHE_RSA_AES_128_CBC_SHA1 | ||
| style="background-color: # | | style="background-color: #DBC158; font-weight: bold;" | TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA | ||
| style="background-color: # | | style="background-color: #DBC158; font-weight: bold;" | ECDHE-RSA-AES128-SHA | ||
|- | |- | ||
! scope=row | 0xC0,0x09 | ! scope=row | 0xC0,0x09 | ||
| style="background-color: # | | style="background-color: #DBC158; font-weight: bold; text-align: center;" | 12 | ||
| style="background-color: # | | style="background-color: #DBC158; font-weight: bold;" | TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA | ||
| style="background-color: # | | style="background-color: #DBC158; font-weight: bold;" | TLS_ECDHE_ECDSA_AES_128_CBC_SHA1 | ||
| style="background-color: # | | style="background-color: #DBC158; font-weight: bold;" | TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA | ||
| style="background-color: # | | style="background-color: #DBC158; font-weight: bold;" | ECDHE-ECDSA-AES128-SHA | ||
|- | |- | ||
! scope=row | 0xC0,0x28 | ! scope=row | 0xC0,0x28 | ||
Line 1,185: | Line 604: | ||
| style="background-color: #9EDB58; font-weight: bold;" | TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384 | | style="background-color: #9EDB58; font-weight: bold;" | TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384 | ||
| style="background-color: #9EDB58; font-weight: bold;" | TLS_ECDHE_RSA_AES_256_CBC_SHA384 | | style="background-color: #9EDB58; font-weight: bold;" | TLS_ECDHE_RSA_AES_256_CBC_SHA384 | ||
| style="background-color: #9EDB58; font-weight: bold;" | | | style="background-color: #9EDB58; font-weight: bold;" | | ||
| style="background-color: #9EDB58; font-weight: bold;" | ECDHE-RSA-AES256-SHA384 | | style="background-color: #9EDB58; font-weight: bold;" | ECDHE-RSA-AES256-SHA384 | ||
|- | |- | ||
Line 1,192: | Line 611: | ||
| style="background-color: #9EDB58; font-weight: bold;" | TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384 | | style="background-color: #9EDB58; font-weight: bold;" | TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384 | ||
| style="background-color: #9EDB58; font-weight: bold;" | TLS_ECDHE_ECDSA_AES_256_CBC_SHA384 | | style="background-color: #9EDB58; font-weight: bold;" | TLS_ECDHE_ECDSA_AES_256_CBC_SHA384 | ||
| style="background-color: #9EDB58; font-weight: bold;" | | | style="background-color: #9EDB58; font-weight: bold;" | | ||
| style="background-color: #9EDB58; font-weight: bold;" | ECDHE-ECDSA-AES256-SHA384 | | style="background-color: #9EDB58; font-weight: bold;" | ECDHE-ECDSA-AES256-SHA384 | ||
|- | |- | ||
! scope=row | 0xC0,0x14 | ! scope=row | 0xC0,0x14 | ||
| style="background-color: # | | style="background-color: #DBC158; font-weight: bold; text-align: center;" | 15 | ||
| style="background-color: # | | style="background-color: #DBC158; font-weight: bold;" | TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA | ||
| style="background-color: # | | style="background-color: #DBC158; font-weight: bold;" | TLS_ECDHE_RSA_AES_256_CBC_SHA1 | ||
| style="background-color: # | | style="background-color: #DBC158; font-weight: bold;" | TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA | ||
| style="background-color: # | | style="background-color: #DBC158; font-weight: bold;" | ECDHE-RSA-AES256-SHA | ||
|- | |- | ||
! scope=row | 0xC0,0x0A | ! scope=row | 0xC0,0x0A | ||
| style="background-color: # | | style="background-color: #DBC158; font-weight: bold; text-align: center;" | 16 | ||
| style="background-color: # | | style="background-color: #DBC158; font-weight: bold;" | TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA | ||
| style="background-color: # | | style="background-color: #DBC158; font-weight: bold;" | TLS_ECDHE_ECDSA_AES_256_CBC_SHA1 | ||
| style="background-color: # | | style="background-color: #DBC158; font-weight: bold;" | TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA | ||
| style="background-color: # | | style="background-color: #DBC158; font-weight: bold;" | ECDHE-ECDSA-AES256-SHA | ||
|- | |- | ||
! scope=row | 0x00,0x67 | ! scope=row | 0x00,0x67 | ||
Line 1,217: | Line 636: | ||
|- | |- | ||
! scope=row | 0x00,0x33 | ! scope=row | 0x00,0x33 | ||
| style="background-color: # | | style="background-color: #DBC158; font-weight: bold; text-align: center;" | 18 | ||
| style="background-color: # | | style="background-color: #DBC158; font-weight: bold;" | TLS_DHE_RSA_WITH_AES_128_CBC_SHA | ||
| style="background-color: # | | style="background-color: #DBC158; font-weight: bold;" | TLS_DHE_RSA_AES_128_CBC_SHA1 | ||
| style="background-color: # | | style="background-color: #DBC158; font-weight: bold;" | TLS_DHE_RSA_WITH_AES_128_CBC_SHA | ||
| style="background-color: # | | style="background-color: #DBC158; font-weight: bold;" | DHE-RSA-AES128-SHA | ||
|- | |- | ||
! scope=row | 0x00,0x40 | ! scope=row | 0x00,0x40 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold; text-align: center;" | 19 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_DHE_DSS_WITH_AES_128_CBC_SHA256 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_DHE_DSS_AES_128_CBC_SHA256 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_DHE_DSS_WITH_AES_128_CBC_SHA256 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | DHE-DSS-AES128-SHA256 | ||
|- | |- | ||
! scope=row | 0x00,0x6B | ! scope=row | 0x00,0x6B | ||
Line 1,238: | Line 657: | ||
|- | |- | ||
! scope=row | 0x00,0x38 | ! scope=row | 0x00,0x38 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold; text-align: center;" | 21 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_DHE_DSS_WITH_AES_256_CBC_SHA | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_DHE_DSS_AES_256_CBC_SHA1 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_DHE_DSS_WITH_AES_256_CBC_SHA | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | DHE-DSS-AES256-SHA | ||
|- | |- | ||
! scope=row | 0x00,0x39 | ! scope=row | 0x00,0x39 | ||
| style="background-color: # | | style="background-color: #DBC158; font-weight: bold; text-align: center;" | 22 | ||
| style="background-color: # | | style="background-color: #DBC158; font-weight: bold;" | TLS_DHE_RSA_WITH_AES_256_CBC_SHA | ||
| style="background-color: # | | style="background-color: #DBC158; font-weight: bold;" | TLS_DHE_RSA_AES_256_CBC_SHA1 | ||
| style="background-color: # | | style="background-color: #DBC158; font-weight: bold;" | TLS_DHE_RSA_WITH_AES_256_CBC_SHA | ||
| style="background-color: # | | style="background-color: #DBC158; font-weight: bold;" | DHE-RSA-AES256-SHA | ||
|- | |- | ||
! scope=row | 0xC0,0x12 | ! scope=row | 0xC0,0x12 | ||
Line 1,276: | Line 695: | ||
| style="background-color: #DBC158; font-weight: bold;" | TLS_RSA_WITH_AES_256_GCM_SHA384 | | style="background-color: #DBC158; font-weight: bold;" | TLS_RSA_WITH_AES_256_GCM_SHA384 | ||
| style="background-color: #DBC158; font-weight: bold;" | TLS_RSA_AES_256_GCM_SHA384 | | style="background-color: #DBC158; font-weight: bold;" | TLS_RSA_AES_256_GCM_SHA384 | ||
| style="background-color: #DBC158; font-weight: bold;" | | | style="background-color: #DBC158; font-weight: bold;" | | ||
| style="background-color: #DBC158; font-weight: bold;" | AES256-GCM-SHA384 | | style="background-color: #DBC158; font-weight: bold;" | AES256-GCM-SHA384 | ||
|- | |- | ||
Line 1,308: | Line 727: | ||
|- | |- | ||
! scope=row | 0xC0,0x22 | ! scope=row | 0xC0,0x22 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold; text-align: center;" | 31 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_SRP_SHA_DSS_WITH_AES_256_CBC_SHA | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_SRP_SHA_DSS_AES_256_CBC_SHA1 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | SRP-DSS-AES-256-CBC-SHA | ||
|- | |- | ||
! scope=row | 0xC0,0x21 | ! scope=row | 0xC0,0x21 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold; text-align: center;" | 32 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_SRP_SHA_RSA_WITH_AES_256_CBC_SHA | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_SRP_SHA_RSA_AES_256_CBC_SHA1 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | SRP-RSA-AES-256-CBC-SHA | ||
|- | |- | ||
! scope=row | 0xC0,0x20 | ! scope=row | 0xC0,0x20 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold; text-align: center;" | 33 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_SRP_SHA_WITH_AES_256_CBC_SHA | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_SRP_SHA_AES_256_CBC_SHA1 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | SRP-AES-256-CBC-SHA | ||
|- | |- | ||
! scope=row | 0x00,0xA5 | ! scope=row | 0x00,0xA5 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold; text-align: center;" | 34 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_DH_DSS_WITH_AES_256_GCM_SHA384 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | DH-DSS-AES256-GCM-SHA384 | ||
|- | |- | ||
! scope=row | 0x00,0xA1 | ! scope=row | 0x00,0xA1 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold; text-align: center;" | 35 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_DH_RSA_WITH_AES_256_GCM_SHA384 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | DH-RSA-AES256-GCM-SHA384 | ||
|- | |- | ||
! scope=row | 0x00,0x6A | ! scope=row | 0x00,0x6A | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold; text-align: center;" | 36 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_DHE_DSS_WITH_AES_256_CBC_SHA256 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_DHE_DSS_AES_256_CBC_SHA256 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_DHE_DSS_WITH_AES_256_CBC_SHA256 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | DHE-DSS-AES256-SHA256 | ||
|- | |- | ||
! scope=row | 0x00,0x69 | ! scope=row | 0x00,0x69 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold; text-align: center;" | 37 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_DH_RSA_WITH_AES_256_CBC_SHA256 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | DH-RSA-AES256-SHA256 | ||
|- | |- | ||
! scope=row | 0x00,0x68 | ! scope=row | 0x00,0x68 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold; text-align: center;" | 38 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_DH_DSS_WITH_AES_256_CBC_SHA256 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | DH-DSS-AES256-SHA256 | ||
|- | |- | ||
! scope=row | 0x00,0x37 | ! scope=row | 0x00,0x37 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold; text-align: center;" | 39 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_DH_RSA_WITH_AES_256_CBC_SHA | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_DH_RSA_WITH_AES_256_CBC_SHA | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | DH-RSA-AES256-SHA | ||
|- | |- | ||
! scope=row | 0x00,0x36 | ! scope=row | 0x00,0x36 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold; text-align: center;" | 40 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_DH_DSS_WITH_AES_256_CBC_SHA | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_DH_DSS_WITH_AES_256_CBC_SHA | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | DH-DSS-AES256-SHA | ||
|- | |- | ||
! scope=row | 0xC0,0x1F | ! scope=row | 0xC0,0x1F | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold; text-align: center;" | 41 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_SRP_SHA_DSS_WITH_AES_128_CBC_SHA | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_SRP_SHA_DSS_AES_128_CBC_SHA1 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | SRP-DSS-AES-128-CBC-SHA | ||
|- | |- | ||
! scope=row | 0xC0,0x1E | ! scope=row | 0xC0,0x1E | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold; text-align: center;" | 42 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_SRP_SHA_RSA_WITH_AES_128_CBC_SHA | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_SRP_SHA_RSA_AES_128_CBC_SHA1 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | SRP-RSA-AES-128-CBC-SHA | ||
|- | |- | ||
! scope=row | 0xC0,0x1D | ! scope=row | 0xC0,0x1D | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold; text-align: center;" | 43 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_SRP_SHA_WITH_AES_128_CBC_SHA | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_SRP_SHA_AES_128_CBC_SHA1 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | SRP-AES-128-CBC-SHA | ||
|- | |- | ||
! scope=row | 0x00,0xA4 | ! scope=row | 0x00,0xA4 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold; text-align: center;" | 44 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_DH_DSS_WITH_AES_128_GCM_SHA256 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | DH-DSS-AES128-GCM-SHA256 | ||
|- | |- | ||
! scope=row | 0x00,0xA0 | ! scope=row | 0x00,0xA0 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold; text-align: center;" | 45 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_DH_RSA_WITH_AES_128_GCM_SHA256 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | DH-RSA-AES128-GCM-SHA256 | ||
|- | |- | ||
! scope=row | 0x00,0x3F | ! scope=row | 0x00,0x3F | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold; text-align: center;" | 46 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_DH_RSA_WITH_AES_128_CBC_SHA256 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | DH-RSA-AES128-SHA256 | ||
|- | |- | ||
! scope=row | 0x00,0x3E | ! scope=row | 0x00,0x3E | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold; text-align: center;" | 47 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_DH_DSS_WITH_AES_128_CBC_SHA256 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | DH-DSS-AES128-SHA256 | ||
|- | |- | ||
! scope=row | 0x00,0x32 | ! scope=row | 0x00,0x32 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold; text-align: center;" | 48 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_DHE_DSS_WITH_AES_128_CBC_SHA | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_DHE_DSS_AES_128_CBC_SHA1 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_DHE_DSS_WITH_AES_128_CBC_SHA | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | DHE-DSS-AES128-SHA | ||
|- | |- | ||
! scope=row | 0x00,0x31 | ! scope=row | 0x00,0x31 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold; text-align: center;" | 49 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_DH_RSA_WITH_AES_128_CBC_SHA | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_DH_RSA_WITH_AES_128_CBC_SHA | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | DH-RSA-AES128-SHA | ||
|- | |- | ||
! scope=row | 0x00,0x30 | ! scope=row | 0x00,0x30 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold; text-align: center;" | 50 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_DH_DSS_WITH_AES_128_CBC_SHA | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_DH_DSS_WITH_AES_128_CBC_SHA | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | DH-DSS-AES128-SHA | ||
|- | |- | ||
! scope=row | 0x00,0x0A | ! scope=row | 0x00,0x0A | ||
Line 1,452: | Line 871: | ||
| style="background-color: #DBC158; font-weight: bold;" | TLS_RSA_3DES_EDE_CBC_SHA1 | | style="background-color: #DBC158; font-weight: bold;" | TLS_RSA_3DES_EDE_CBC_SHA1 | ||
| style="background-color: #DBC158; font-weight: bold;" | TLS_RSA_WITH_3DES_EDE_CBC_SHA | | style="background-color: #DBC158; font-weight: bold;" | TLS_RSA_WITH_3DES_EDE_CBC_SHA | ||
| style="background-color: #DBC158; font-weight: bold;" | | | style="background-color: #DBC158; font-weight: bold;" | | ||
|- | |- | ||
! scope=row | 0x00,0x88 | ! scope=row | 0x00,0x88 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold; text-align: center;" | 52 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_DHE_RSA_CAMELLIA_256_CBC_SHA1 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | DHE-RSA-CAMELLIA256-SHA | ||
|- | |- | ||
! scope=row | 0x00,0x87 | ! scope=row | 0x00,0x87 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold; text-align: center;" | 53 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_DHE_DSS_WITH_CAMELLIA_256_CBC_SHA | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_DHE_DSS_CAMELLIA_256_CBC_SHA1 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_DHE_DSS_WITH_CAMELLIA_256_CBC_SHA | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | DHE-DSS-CAMELLIA256-SHA | ||
|- | |- | ||
! scope=row | 0x00,0x86 | ! scope=row | 0x00,0x86 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold; text-align: center;" | 54 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_DH_RSA_WITH_CAMELLIA_256_CBC_SHA | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_DH_RSA_WITH_CAMELLIA_256_CBC_SHA | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | DH-RSA-CAMELLIA256-SHA | ||
|- | |- | ||
! scope=row | 0x00,0x85 | ! scope=row | 0x00,0x85 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold; text-align: center;" | 55 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_DH_DSS_WITH_CAMELLIA_256_CBC_SHA | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_DH_DSS_WITH_CAMELLIA_256_CBC_SHA | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | DH-DSS-CAMELLIA256-SHA | ||
|- | |- | ||
! scope=row | 0x00,0x84 | ! scope=row | 0x00,0x84 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold; text-align: center;" | 56 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_RSA_WITH_CAMELLIA_256_CBC_SHA | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_RSA_CAMELLIA_256_CBC_SHA1 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_RSA_WITH_CAMELLIA_256_CBC_SHA | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | CAMELLIA256-SHA | ||
|- | |- | ||
! scope=row | 0x00,0x45 | ! scope=row | 0x00,0x45 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold; text-align: center;" | 57 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_DHE_RSA_CAMELLIA_128_CBC_SHA1 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | DHE-RSA-CAMELLIA128-SHA | ||
|- | |- | ||
! scope=row | 0x00,0x44 | ! scope=row | 0x00,0x44 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold; text-align: center;" | 58 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_DHE_DSS_WITH_CAMELLIA_128_CBC_SHA | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_DHE_DSS_CAMELLIA_128_CBC_SHA1 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_DHE_DSS_WITH_CAMELLIA_128_CBC_SHA | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | DHE-DSS-CAMELLIA128-SHA | ||
|- | |- | ||
! scope=row | 0x00,0x43 | ! scope=row | 0x00,0x43 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold; text-align: center;" | 59 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_DH_RSA_WITH_CAMELLIA_128_CBC_SHA | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_DH_RSA_WITH_CAMELLIA_128_CBC_SHA | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | DH-RSA-CAMELLIA128-SHA | ||
|- | |- | ||
! scope=row | 0x00,0x42 | ! scope=row | 0x00,0x42 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold; text-align: center;" | 60 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_DH_DSS_WITH_CAMELLIA_128_CBC_SHA | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_DH_DSS_WITH_CAMELLIA_128_CBC_SHA | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | DH-DSS-CAMELLIA128-SHA | ||
|- | |- | ||
! scope=row | 0x00,0x41 | ! scope=row | 0x00,0x41 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold; text-align: center;" | 61 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_RSA_WITH_CAMELLIA_128_CBC_SHA | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_RSA_CAMELLIA_128_CBC_SHA1 | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_RSA_WITH_CAMELLIA_128_CBC_SHA | ||
| style="background-color: # | | style="background-color: #CCCCCC; font-weight: bold;" | CAMELLIA128-SHA | ||
|- | |- | ||
! scope=row | 0xC0,0x1C | ! scope=row | 0xC0,0x1C | ||
Line 1,528: | Line 947: | ||
| style="background-color: #CCCCCC; font-weight: bold;" | TLS_SRP_SHA_DSS_WITH_3DES_EDE_CBC_SHA | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_SRP_SHA_DSS_WITH_3DES_EDE_CBC_SHA | ||
| style="background-color: #CCCCCC; font-weight: bold;" | TLS_SRP_SHA_DSS_3DES_EDE_CBC_SHA1 | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_SRP_SHA_DSS_3DES_EDE_CBC_SHA1 | ||
| style="background-color: #CCCCCC; font-weight: bold;" | | | style="background-color: #CCCCCC; font-weight: bold;" | | ||
| style="background-color: #CCCCCC; font-weight: bold;" | SRP-DSS-3DES-EDE-CBC-SHA | | style="background-color: #CCCCCC; font-weight: bold;" | SRP-DSS-3DES-EDE-CBC-SHA | ||
|- | |- | ||
Line 1,535: | Line 954: | ||
| style="background-color: #CCCCCC; font-weight: bold;" | TLS_SRP_SHA_RSA_WITH_3DES_EDE_CBC_SHA | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_SRP_SHA_RSA_WITH_3DES_EDE_CBC_SHA | ||
| style="background-color: #CCCCCC; font-weight: bold;" | TLS_SRP_SHA_RSA_3DES_EDE_CBC_SHA1 | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_SRP_SHA_RSA_3DES_EDE_CBC_SHA1 | ||
| style="background-color: #CCCCCC; font-weight: bold;" | | | style="background-color: #CCCCCC; font-weight: bold;" | | ||
| style="background-color: #CCCCCC; font-weight: bold;" | SRP-RSA-3DES-EDE-CBC-SHA | | style="background-color: #CCCCCC; font-weight: bold;" | SRP-RSA-3DES-EDE-CBC-SHA | ||
|- | |- | ||
Line 1,542: | Line 961: | ||
| style="background-color: #CCCCCC; font-weight: bold;" | TLS_SRP_SHA_WITH_3DES_EDE_CBC_SHA | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_SRP_SHA_WITH_3DES_EDE_CBC_SHA | ||
| style="background-color: #CCCCCC; font-weight: bold;" | TLS_SRP_SHA_3DES_EDE_CBC_SHA1 | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_SRP_SHA_3DES_EDE_CBC_SHA1 | ||
| style="background-color: #CCCCCC; font-weight: bold;" | | | style="background-color: #CCCCCC; font-weight: bold;" | | ||
| style="background-color: #CCCCCC; font-weight: bold;" | SRP-3DES-EDE-CBC-SHA | | style="background-color: #CCCCCC; font-weight: bold;" | SRP-3DES-EDE-CBC-SHA | ||
|- | |- | ||
Line 1,548: | Line 967: | ||
| style="background-color: #CCCCCC; font-weight: bold; text-align: center;" | 65 | | style="background-color: #CCCCCC; font-weight: bold; text-align: center;" | 65 | ||
| style="background-color: #CCCCCC; font-weight: bold;" | TLS_DH_RSA_WITH_3DES_EDE_CBC_SHA | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_DH_RSA_WITH_3DES_EDE_CBC_SHA | ||
| style="background-color: #CCCCCC; font-weight: bold;" | | | style="background-color: #CCCCCC; font-weight: bold;" | | ||
| style="background-color: #CCCCCC; font-weight: bold;" | TLS_DH_RSA_WITH_3DES_EDE_CBC_SHA | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_DH_RSA_WITH_3DES_EDE_CBC_SHA | ||
| style="background-color: #CCCCCC; font-weight: bold;" | | | style="background-color: #CCCCCC; font-weight: bold;" | | ||
|- | |- | ||
! scope=row | 0x00,0x0D | ! scope=row | 0x00,0x0D | ||
| style="background-color: #CCCCCC; font-weight: bold; text-align: center;" | 66 | | style="background-color: #CCCCCC; font-weight: bold; text-align: center;" | 66 | ||
| style="background-color: #CCCCCC; font-weight: bold;" | TLS_DH_DSS_WITH_3DES_EDE_CBC_SHA | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_DH_DSS_WITH_3DES_EDE_CBC_SHA | ||
| style="background-color: #CCCCCC; font-weight: bold;" | | | style="background-color: #CCCCCC; font-weight: bold;" | | ||
| style="background-color: #CCCCCC; font-weight: bold;" | TLS_DH_DSS_WITH_3DES_EDE_CBC_SHA | | style="background-color: #CCCCCC; font-weight: bold;" | TLS_DH_DSS_WITH_3DES_EDE_CBC_SHA | ||
| style="background-color: #CCCCCC; font-weight: bold;" | | | style="background-color: #CCCCCC; font-weight: bold;" | | ||
|- | |- | ||
! scope=row | 0x00,0x00 | ! scope=row | 0x00,0x00 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_NULL_WITH_NULL_NULL | | style="background-color: white;" | TLS_NULL_WITH_NULL_NULL | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | TLS_NULL_WITH_NULL_NULL | | style="background-color: white;" | TLS_NULL_WITH_NULL_NULL | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0x00,0x01 | ! scope=row | 0x00,0x01 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_RSA_WITH_NULL_MD5 | | style="background-color: white;" | TLS_RSA_WITH_NULL_MD5 | ||
| style="background-color: white;" | TLS_RSA_NULL_MD5 | | style="background-color: white;" | TLS_RSA_NULL_MD5 | ||
| style="background-color: white;" | TLS_RSA_WITH_NULL_MD5 | | style="background-color: white;" | TLS_RSA_WITH_NULL_MD5 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0x00,0x02 | ! scope=row | 0x00,0x02 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_RSA_WITH_NULL_SHA | | style="background-color: white;" | TLS_RSA_WITH_NULL_SHA | ||
| style="background-color: white;" | TLS_RSA_NULL_SHA1 | | style="background-color: white;" | TLS_RSA_NULL_SHA1 | ||
| style="background-color: white;" | TLS_RSA_WITH_NULL_SHA | | style="background-color: white;" | TLS_RSA_WITH_NULL_SHA | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0x00,0x03 | ! scope=row | 0x00,0x03 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_RSA_EXPORT_WITH_RC4_40_MD5 | | style="background-color: white;" | TLS_RSA_EXPORT_WITH_RC4_40_MD5 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | TLS_RSA_EXPORT_WITH_RC4_40_MD5 | | style="background-color: white;" | TLS_RSA_EXPORT_WITH_RC4_40_MD5 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0x00,0x04 | ! scope=row | 0x00,0x04 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_RSA_WITH_RC4_128_MD5 | | style="background-color: white;" | TLS_RSA_WITH_RC4_128_MD5 | ||
| style="background-color: white;" | TLS_RSA_ARCFOUR_128_MD5 | | style="background-color: white;" | TLS_RSA_ARCFOUR_128_MD5 | ||
| style="background-color: white;" | TLS_RSA_WITH_RC4_128_MD5 | | style="background-color: white;" | TLS_RSA_WITH_RC4_128_MD5 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0x00,0x05 | ! scope=row | 0x00,0x05 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_RSA_WITH_RC4_128_SHA | | style="background-color: white;" | TLS_RSA_WITH_RC4_128_SHA | ||
| style="background-color: white;" | TLS_RSA_ARCFOUR_128_SHA1 | | style="background-color: white;" | TLS_RSA_ARCFOUR_128_SHA1 | ||
| style="background-color: white;" | TLS_RSA_WITH_RC4_128_SHA | | style="background-color: white;" | TLS_RSA_WITH_RC4_128_SHA | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0x00,0x06 | ! scope=row | 0x00,0x06 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_RSA_EXPORT_WITH_RC2_CBC_40_MD5 | | style="background-color: white;" | TLS_RSA_EXPORT_WITH_RC2_CBC_40_MD5 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | TLS_RSA_EXPORT_WITH_RC2_CBC_40_MD5 | | style="background-color: white;" | TLS_RSA_EXPORT_WITH_RC2_CBC_40_MD5 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0x00,0x07 | ! scope=row | 0x00,0x07 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_RSA_WITH_IDEA_CBC_SHA | | style="background-color: white;" | TLS_RSA_WITH_IDEA_CBC_SHA | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | TLS_RSA_WITH_IDEA_CBC_SHA | | style="background-color: white;" | TLS_RSA_WITH_IDEA_CBC_SHA | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0x00,0x08 | ! scope=row | 0x00,0x08 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_RSA_EXPORT_WITH_DES40_CBC_SHA | | style="background-color: white;" | TLS_RSA_EXPORT_WITH_DES40_CBC_SHA | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | TLS_RSA_EXPORT_WITH_DES40_CBC_SHA | | style="background-color: white;" | TLS_RSA_EXPORT_WITH_DES40_CBC_SHA | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0x00,0x09 | ! scope=row | 0x00,0x09 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_RSA_WITH_DES_CBC_SHA | | style="background-color: white;" | TLS_RSA_WITH_DES_CBC_SHA | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | TLS_RSA_WITH_DES_CBC_SHA | | style="background-color: white;" | TLS_RSA_WITH_DES_CBC_SHA | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0x00,0x0B | ! scope=row | 0x00,0x0B | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DH_DSS_EXPORT_WITH_DES40_CBC_SHA | | style="background-color: white;" | TLS_DH_DSS_EXPORT_WITH_DES40_CBC_SHA | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | TLS_DH_DSS_EXPORT_WITH_DES40_CBC_SHA | | style="background-color: white;" | TLS_DH_DSS_EXPORT_WITH_DES40_CBC_SHA | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0x00,0x0C | ! scope=row | 0x00,0x0C | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DH_DSS_WITH_DES_CBC_SHA | | style="background-color: white;" | TLS_DH_DSS_WITH_DES_CBC_SHA | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | TLS_DH_DSS_WITH_DES_CBC_SHA | | style="background-color: white;" | TLS_DH_DSS_WITH_DES_CBC_SHA | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0x00,0x0E | ! scope=row | 0x00,0x0E | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DH_RSA_EXPORT_WITH_DES40_CBC_SHA | | style="background-color: white;" | TLS_DH_RSA_EXPORT_WITH_DES40_CBC_SHA | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | TLS_DH_RSA_EXPORT_WITH_DES40_CBC_SHA | | style="background-color: white;" | TLS_DH_RSA_EXPORT_WITH_DES40_CBC_SHA | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0x00,0x0F | ! scope=row | 0x00,0x0F | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DH_RSA_WITH_DES_CBC_SHA | | style="background-color: white;" | TLS_DH_RSA_WITH_DES_CBC_SHA | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | TLS_DH_RSA_WITH_DES_CBC_SHA | | style="background-color: white;" | TLS_DH_RSA_WITH_DES_CBC_SHA | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0x00,0x11 | ! scope=row | 0x00,0x11 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DHE_DSS_EXPORT_WITH_DES40_CBC_SHA | | style="background-color: white;" | TLS_DHE_DSS_EXPORT_WITH_DES40_CBC_SHA | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | TLS_DHE_DSS_EXPORT_WITH_DES40_CBC_SHA | | style="background-color: white;" | TLS_DHE_DSS_EXPORT_WITH_DES40_CBC_SHA | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0x00,0x12 | ! scope=row | 0x00,0x12 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DHE_DSS_WITH_DES_CBC_SHA | | style="background-color: white;" | TLS_DHE_DSS_WITH_DES_CBC_SHA | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | TLS_DHE_DSS_WITH_DES_CBC_SHA | | style="background-color: white;" | TLS_DHE_DSS_WITH_DES_CBC_SHA | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0x00,0x13 | ! scope=row | 0x00,0x13 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DHE_DSS_WITH_3DES_EDE_CBC_SHA | | style="background-color: white;" | TLS_DHE_DSS_WITH_3DES_EDE_CBC_SHA | ||
| style="background-color: white;" | TLS_DHE_DSS_3DES_EDE_CBC_SHA1 | | style="background-color: white;" | TLS_DHE_DSS_3DES_EDE_CBC_SHA1 | ||
| style="background-color: white;" | TLS_DHE_DSS_WITH_3DES_EDE_CBC_SHA | | style="background-color: white;" | TLS_DHE_DSS_WITH_3DES_EDE_CBC_SHA | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0x00,0x14 | ! scope=row | 0x00,0x14 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DHE_RSA_EXPORT_WITH_DES40_CBC_SHA | | style="background-color: white;" | TLS_DHE_RSA_EXPORT_WITH_DES40_CBC_SHA | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | TLS_DHE_RSA_EXPORT_WITH_DES40_CBC_SHA | | style="background-color: white;" | TLS_DHE_RSA_EXPORT_WITH_DES40_CBC_SHA | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0x00,0x15 | ! scope=row | 0x00,0x15 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DHE_RSA_WITH_DES_CBC_SHA | | style="background-color: white;" | TLS_DHE_RSA_WITH_DES_CBC_SHA | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | TLS_DHE_RSA_WITH_DES_CBC_SHA | | style="background-color: white;" | TLS_DHE_RSA_WITH_DES_CBC_SHA | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0x00,0x16 | ! scope=row | 0x00,0x16 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DHE_RSA_WITH_3DES_EDE_CBC_SHA | | style="background-color: white;" | TLS_DHE_RSA_WITH_3DES_EDE_CBC_SHA | ||
| style="background-color: white;" | TLS_DHE_RSA_3DES_EDE_CBC_SHA1 | | style="background-color: white;" | TLS_DHE_RSA_3DES_EDE_CBC_SHA1 | ||
| style="background-color: white;" | TLS_DHE_RSA_WITH_3DES_EDE_CBC_SHA | | style="background-color: white;" | TLS_DHE_RSA_WITH_3DES_EDE_CBC_SHA | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0x00,0x17 | ! scope=row | 0x00,0x17 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DH_anon_EXPORT_WITH_RC4_40_MD5 | | style="background-color: white;" | TLS_DH_anon_EXPORT_WITH_RC4_40_MD5 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | TLS_DH_anon_EXPORT_WITH_RC4_40_MD5 | | style="background-color: white;" | TLS_DH_anon_EXPORT_WITH_RC4_40_MD5 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0x00,0x18 | ! scope=row | 0x00,0x18 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DH_anon_WITH_RC4_128_MD5 | | style="background-color: white;" | TLS_DH_anon_WITH_RC4_128_MD5 | ||
| style="background-color: white;" | TLS_DH_ANON_ARCFOUR_128_MD5 | | style="background-color: white;" | TLS_DH_ANON_ARCFOUR_128_MD5 | ||
| style="background-color: white;" | TLS_DH_anon_WITH_RC4_128_MD5 | | style="background-color: white;" | TLS_DH_anon_WITH_RC4_128_MD5 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0x00,0x19 | ! scope=row | 0x00,0x19 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DH_anon_EXPORT_WITH_DES40_CBC_SHA | | style="background-color: white;" | TLS_DH_anon_EXPORT_WITH_DES40_CBC_SHA | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | TLS_DH_anon_EXPORT_WITH_DES40_CBC_SHA | | style="background-color: white;" | TLS_DH_anon_EXPORT_WITH_DES40_CBC_SHA | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0x00,0x1A | ! scope=row | 0x00,0x1A | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DH_anon_WITH_DES_CBC_SHA | | style="background-color: white;" | TLS_DH_anon_WITH_DES_CBC_SHA | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | TLS_DH_anon_WITH_DES_CBC_SHA | | style="background-color: white;" | TLS_DH_anon_WITH_DES_CBC_SHA | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0x00,0x1B | ! scope=row | 0x00,0x1B | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DH_anon_WITH_3DES_EDE_CBC_SHA | | style="background-color: white;" | TLS_DH_anon_WITH_3DES_EDE_CBC_SHA | ||
| style="background-color: white;" | TLS_DH_ANON_3DES_EDE_CBC_SHA1 | | style="background-color: white;" | TLS_DH_ANON_3DES_EDE_CBC_SHA1 | ||
| style="background-color: white;" | TLS_DH_anon_WITH_3DES_EDE_CBC_SHA | | style="background-color: white;" | TLS_DH_anon_WITH_3DES_EDE_CBC_SHA | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0x00,0x1E | ! scope=row | 0x00,0x1E | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_KRB5_WITH_DES_CBC_SHA | | style="background-color: white;" | TLS_KRB5_WITH_DES_CBC_SHA | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0x00,0x1F | ! scope=row | 0x00,0x1F | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_KRB5_WITH_3DES_EDE_CBC_SHA | | style="background-color: white;" | TLS_KRB5_WITH_3DES_EDE_CBC_SHA | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0x00,0x20 | ! scope=row | 0x00,0x20 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_KRB5_WITH_RC4_128_SHA | | style="background-color: white;" | TLS_KRB5_WITH_RC4_128_SHA | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0x00,0x21 | ! scope=row | 0x00,0x21 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_KRB5_WITH_IDEA_CBC_SHA | | style="background-color: white;" | TLS_KRB5_WITH_IDEA_CBC_SHA | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0x00,0x22 | ! scope=row | 0x00,0x22 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_KRB5_WITH_DES_CBC_MD5 | | style="background-color: white;" | TLS_KRB5_WITH_DES_CBC_MD5 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0x00,0x23 | ! scope=row | 0x00,0x23 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_KRB5_WITH_3DES_EDE_CBC_MD5 | | style="background-color: white;" | TLS_KRB5_WITH_3DES_EDE_CBC_MD5 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0x00,0x24 | ! scope=row | 0x00,0x24 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_KRB5_WITH_RC4_128_MD5 | | style="background-color: white;" | TLS_KRB5_WITH_RC4_128_MD5 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0x00,0x25 | ! scope=row | 0x00,0x25 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_KRB5_WITH_IDEA_CBC_MD5 | | style="background-color: white;" | TLS_KRB5_WITH_IDEA_CBC_MD5 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0x00,0x26 | ! scope=row | 0x00,0x26 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_KRB5_EXPORT_WITH_DES_CBC_40_SHA | | style="background-color: white;" | TLS_KRB5_EXPORT_WITH_DES_CBC_40_SHA | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0x00,0x27 | ! scope=row | 0x00,0x27 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_KRB5_EXPORT_WITH_RC2_CBC_40_SHA | | style="background-color: white;" | TLS_KRB5_EXPORT_WITH_RC2_CBC_40_SHA | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0x00,0x28 | ! scope=row | 0x00,0x28 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_KRB5_EXPORT_WITH_RC4_40_SHA | | style="background-color: white;" | TLS_KRB5_EXPORT_WITH_RC4_40_SHA | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0x00,0x29 | ! scope=row | 0x00,0x29 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_KRB5_EXPORT_WITH_DES_CBC_40_MD5 | | style="background-color: white;" | TLS_KRB5_EXPORT_WITH_DES_CBC_40_MD5 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0x00,0x2A | ! scope=row | 0x00,0x2A | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_KRB5_EXPORT_WITH_RC2_CBC_40_MD5 | | style="background-color: white;" | TLS_KRB5_EXPORT_WITH_RC2_CBC_40_MD5 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0x00,0x2B | ! scope=row | 0x00,0x2B | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_KRB5_EXPORT_WITH_RC4_40_MD5 | | style="background-color: white;" | TLS_KRB5_EXPORT_WITH_RC4_40_MD5 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0x00,0x2C | ! scope=row | 0x00,0x2C | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_PSK_WITH_NULL_SHA | | style="background-color: white;" | TLS_PSK_WITH_NULL_SHA | ||
| style="background-color: white;" | TLS_PSK_NULL_SHA1 | | style="background-color: white;" | TLS_PSK_NULL_SHA1 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | PSK-NULL-SHA | | style="background-color: white;" | PSK-NULL-SHA | ||
|- | |- | ||
! scope=row | 0x00,0x2D | ! scope=row | 0x00,0x2D | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DHE_PSK_WITH_NULL_SHA | | style="background-color: white;" | TLS_DHE_PSK_WITH_NULL_SHA | ||
| style="background-color: white;" | TLS_DHE_PSK_NULL_SHA1 | | style="background-color: white;" | TLS_DHE_PSK_NULL_SHA1 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | DHE-PSK-NULL-SHA | | style="background-color: white;" | DHE-PSK-NULL-SHA | ||
|- | |- | ||
! scope=row | 0x00,0x2E | ! scope=row | 0x00,0x2E | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_RSA_PSK_WITH_NULL_SHA | | style="background-color: white;" | TLS_RSA_PSK_WITH_NULL_SHA | ||
| style="background-color: white;" | TLS_RSA_PSK_NULL_SHA1 | | style="background-color: white;" | TLS_RSA_PSK_NULL_SHA1 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | RSA-PSK-NULL-SHA | | style="background-color: white;" | RSA-PSK-NULL-SHA | ||
|- | |- | ||
! scope=row | 0x00,0x34 | ! scope=row | 0x00,0x34 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DH_anon_WITH_AES_128_CBC_SHA | | style="background-color: white;" | TLS_DH_anon_WITH_AES_128_CBC_SHA | ||
| style="background-color: white;" | TLS_DH_ANON_AES_128_CBC_SHA1 | | style="background-color: white;" | TLS_DH_ANON_AES_128_CBC_SHA1 | ||
Line 1,861: | Line 1,280: | ||
|- | |- | ||
! scope=row | 0x00,0x3A | ! scope=row | 0x00,0x3A | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DH_anon_WITH_AES_256_CBC_SHA | | style="background-color: white;" | TLS_DH_anon_WITH_AES_256_CBC_SHA | ||
| style="background-color: white;" | TLS_DH_ANON_AES_256_CBC_SHA1 | | style="background-color: white;" | TLS_DH_ANON_AES_256_CBC_SHA1 | ||
Line 1,868: | Line 1,287: | ||
|- | |- | ||
! scope=row | 0x00,0x3B | ! scope=row | 0x00,0x3B | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_RSA_WITH_NULL_SHA256 | | style="background-color: white;" | TLS_RSA_WITH_NULL_SHA256 | ||
| style="background-color: white;" | TLS_RSA_NULL_SHA256 | | style="background-color: white;" | TLS_RSA_NULL_SHA256 | ||
Line 1,875: | Line 1,294: | ||
|- | |- | ||
! scope=row | 0x00,0x46 | ! scope=row | 0x00,0x46 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DH_anon_WITH_CAMELLIA_128_CBC_SHA | | style="background-color: white;" | TLS_DH_anon_WITH_CAMELLIA_128_CBC_SHA | ||
| style="background-color: white;" | TLS_DH_ANON_CAMELLIA_128_CBC_SHA1 | | style="background-color: white;" | TLS_DH_ANON_CAMELLIA_128_CBC_SHA1 | ||
Line 1,882: | Line 1,301: | ||
|- | |- | ||
! scope=row | 0x00,0x6C | ! scope=row | 0x00,0x6C | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DH_anon_WITH_AES_128_CBC_SHA256 | | style="background-color: white;" | TLS_DH_anon_WITH_AES_128_CBC_SHA256 | ||
| style="background-color: white;" | TLS_DH_ANON_AES_128_CBC_SHA256 | | style="background-color: white;" | TLS_DH_ANON_AES_128_CBC_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | ADH-AES128-SHA256 | | style="background-color: white;" | ADH-AES128-SHA256 | ||
|- | |- | ||
! scope=row | 0x00,0x6D | ! scope=row | 0x00,0x6D | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DH_anon_WITH_AES_256_CBC_SHA256 | | style="background-color: white;" | TLS_DH_anon_WITH_AES_256_CBC_SHA256 | ||
| style="background-color: white;" | TLS_DH_ANON_AES_256_CBC_SHA256 | | style="background-color: white;" | TLS_DH_ANON_AES_256_CBC_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | ADH-AES256-SHA256 | | style="background-color: white;" | ADH-AES256-SHA256 | ||
|- | |- | ||
! scope=row | 0x00,0x89 | ! scope=row | 0x00,0x89 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DH_anon_WITH_CAMELLIA_256_CBC_SHA | | style="background-color: white;" | TLS_DH_anon_WITH_CAMELLIA_256_CBC_SHA | ||
| style="background-color: white;" | TLS_DH_ANON_CAMELLIA_256_CBC_SHA1 | | style="background-color: white;" | TLS_DH_ANON_CAMELLIA_256_CBC_SHA1 | ||
Line 1,903: | Line 1,322: | ||
|- | |- | ||
! scope=row | 0x00,0x8A | ! scope=row | 0x00,0x8A | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_PSK_WITH_RC4_128_SHA | | style="background-color: white;" | TLS_PSK_WITH_RC4_128_SHA | ||
| style="background-color: white;" | TLS_PSK_ARCFOUR_128_SHA1 | | style="background-color: white;" | TLS_PSK_ARCFOUR_128_SHA1 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | PSK-RC4-SHA | | style="background-color: white;" | PSK-RC4-SHA | ||
|- | |- | ||
! scope=row | 0x00,0x8B | ! scope=row | 0x00,0x8B | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_PSK_WITH_3DES_EDE_CBC_SHA | | style="background-color: white;" | TLS_PSK_WITH_3DES_EDE_CBC_SHA | ||
| style="background-color: white;" | TLS_PSK_3DES_EDE_CBC_SHA1 | | style="background-color: white;" | TLS_PSK_3DES_EDE_CBC_SHA1 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | PSK-3DES-EDE-CBC-SHA | | style="background-color: white;" | PSK-3DES-EDE-CBC-SHA | ||
|- | |- | ||
! scope=row | 0x00,0x8C | ! scope=row | 0x00,0x8C | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_PSK_WITH_AES_128_CBC_SHA | | style="background-color: white;" | TLS_PSK_WITH_AES_128_CBC_SHA | ||
| style="background-color: white;" | TLS_PSK_AES_128_CBC_SHA1 | | style="background-color: white;" | TLS_PSK_AES_128_CBC_SHA1 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | PSK-AES128-CBC-SHA | | style="background-color: white;" | PSK-AES128-CBC-SHA | ||
|- | |- | ||
! scope=row | 0x00,0x8D | ! scope=row | 0x00,0x8D | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_PSK_WITH_AES_256_CBC_SHA | | style="background-color: white;" | TLS_PSK_WITH_AES_256_CBC_SHA | ||
| style="background-color: white;" | TLS_PSK_AES_256_CBC_SHA1 | | style="background-color: white;" | TLS_PSK_AES_256_CBC_SHA1 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | PSK-AES256-CBC-SHA | | style="background-color: white;" | PSK-AES256-CBC-SHA | ||
|- | |- | ||
! scope=row | 0x00,0x8E | ! scope=row | 0x00,0x8E | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DHE_PSK_WITH_RC4_128_SHA | | style="background-color: white;" | TLS_DHE_PSK_WITH_RC4_128_SHA | ||
| style="background-color: white;" | TLS_DHE_PSK_ARCFOUR_128_SHA1 | | style="background-color: white;" | TLS_DHE_PSK_ARCFOUR_128_SHA1 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | DHE-PSK-RC4-SHA | | style="background-color: white;" | DHE-PSK-RC4-SHA | ||
|- | |- | ||
! scope=row | 0x00,0x8F | ! scope=row | 0x00,0x8F | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DHE_PSK_WITH_3DES_EDE_CBC_SHA | | style="background-color: white;" | TLS_DHE_PSK_WITH_3DES_EDE_CBC_SHA | ||
| style="background-color: white;" | TLS_DHE_PSK_3DES_EDE_CBC_SHA1 | | style="background-color: white;" | TLS_DHE_PSK_3DES_EDE_CBC_SHA1 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | DHE-PSK-3DES-EDE-CBC-SHA | | style="background-color: white;" | DHE-PSK-3DES-EDE-CBC-SHA | ||
|- | |- | ||
! scope=row | 0x00,0x90 | ! scope=row | 0x00,0x90 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DHE_PSK_WITH_AES_128_CBC_SHA | | style="background-color: white;" | TLS_DHE_PSK_WITH_AES_128_CBC_SHA | ||
| style="background-color: white;" | TLS_DHE_PSK_AES_128_CBC_SHA1 | | style="background-color: white;" | TLS_DHE_PSK_AES_128_CBC_SHA1 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | DHE-PSK-AES128-CBC-SHA | | style="background-color: white;" | DHE-PSK-AES128-CBC-SHA | ||
|- | |- | ||
! scope=row | 0x00,0x91 | ! scope=row | 0x00,0x91 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DHE_PSK_WITH_AES_256_CBC_SHA | | style="background-color: white;" | TLS_DHE_PSK_WITH_AES_256_CBC_SHA | ||
| style="background-color: white;" | TLS_DHE_PSK_AES_256_CBC_SHA1 | | style="background-color: white;" | TLS_DHE_PSK_AES_256_CBC_SHA1 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | DHE-PSK-AES256-CBC-SHA | | style="background-color: white;" | DHE-PSK-AES256-CBC-SHA | ||
|- | |- | ||
! scope=row | 0x00,0x92 | ! scope=row | 0x00,0x92 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_RSA_PSK_WITH_RC4_128_SHA | | style="background-color: white;" | TLS_RSA_PSK_WITH_RC4_128_SHA | ||
| style="background-color: white;" | TLS_RSA_PSK_ARCFOUR_128_SHA1 | | style="background-color: white;" | TLS_RSA_PSK_ARCFOUR_128_SHA1 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | RSA-PSK-RC4-SHA | | style="background-color: white;" | RSA-PSK-RC4-SHA | ||
|- | |- | ||
! scope=row | 0x00,0x93 | ! scope=row | 0x00,0x93 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_RSA_PSK_WITH_3DES_EDE_CBC_SHA | | style="background-color: white;" | TLS_RSA_PSK_WITH_3DES_EDE_CBC_SHA | ||
| style="background-color: white;" | TLS_RSA_PSK_3DES_EDE_CBC_SHA1 | | style="background-color: white;" | TLS_RSA_PSK_3DES_EDE_CBC_SHA1 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | RSA-PSK-3DES-EDE-CBC-SHA | | style="background-color: white;" | RSA-PSK-3DES-EDE-CBC-SHA | ||
|- | |- | ||
! scope=row | 0x00,0x94 | ! scope=row | 0x00,0x94 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_RSA_PSK_WITH_AES_128_CBC_SHA | | style="background-color: white;" | TLS_RSA_PSK_WITH_AES_128_CBC_SHA | ||
| style="background-color: white;" | TLS_RSA_PSK_AES_128_CBC_SHA1 | | style="background-color: white;" | TLS_RSA_PSK_AES_128_CBC_SHA1 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | RSA-PSK-AES128-CBC-SHA | | style="background-color: white;" | RSA-PSK-AES128-CBC-SHA | ||
|- | |- | ||
! scope=row | 0x00,0x95 | ! scope=row | 0x00,0x95 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_RSA_PSK_WITH_AES_256_CBC_SHA | | style="background-color: white;" | TLS_RSA_PSK_WITH_AES_256_CBC_SHA | ||
| style="background-color: white;" | TLS_RSA_PSK_AES_256_CBC_SHA1 | | style="background-color: white;" | TLS_RSA_PSK_AES_256_CBC_SHA1 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | RSA-PSK-AES256-CBC-SHA | | style="background-color: white;" | RSA-PSK-AES256-CBC-SHA | ||
|- | |- | ||
! scope=row | 0x00,0x96 | ! scope=row | 0x00,0x96 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_RSA_WITH_SEED_CBC_SHA | | style="background-color: white;" | TLS_RSA_WITH_SEED_CBC_SHA | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | TLS_RSA_WITH_SEED_CBC_SHA | | style="background-color: white;" | TLS_RSA_WITH_SEED_CBC_SHA | ||
| style="background-color: white;" | SEED-SHA | | style="background-color: white;" | SEED-SHA | ||
|- | |- | ||
! scope=row | 0x00,0x97 | ! scope=row | 0x00,0x97 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DH_DSS_WITH_SEED_CBC_SHA | | style="background-color: white;" | TLS_DH_DSS_WITH_SEED_CBC_SHA | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | DH-DSS-SEED-SHA | | style="background-color: white;" | DH-DSS-SEED-SHA | ||
|- | |- | ||
! scope=row | 0x00,0x98 | ! scope=row | 0x00,0x98 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DH_RSA_WITH_SEED_CBC_SHA | | style="background-color: white;" | TLS_DH_RSA_WITH_SEED_CBC_SHA | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | DH-RSA-SEED-SHA | | style="background-color: white;" | DH-RSA-SEED-SHA | ||
|- | |- | ||
! scope=row | 0x00,0x99 | ! scope=row | 0x00,0x99 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DHE_DSS_WITH_SEED_CBC_SHA | | style="background-color: white;" | TLS_DHE_DSS_WITH_SEED_CBC_SHA | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | DHE-DSS-SEED-SHA | | style="background-color: white;" | DHE-DSS-SEED-SHA | ||
|- | |- | ||
! scope=row | 0x00,0x9A | ! scope=row | 0x00,0x9A | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DHE_RSA_WITH_SEED_CBC_SHA | | style="background-color: white;" | TLS_DHE_RSA_WITH_SEED_CBC_SHA | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | DHE-RSA-SEED-SHA | | style="background-color: white;" | DHE-RSA-SEED-SHA | ||
|- | |- | ||
! scope=row | 0x00,0x9B | ! scope=row | 0x00,0x9B | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DH_anon_WITH_SEED_CBC_SHA | | style="background-color: white;" | TLS_DH_anon_WITH_SEED_CBC_SHA | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | ADH-SEED-SHA | | style="background-color: white;" | ADH-SEED-SHA | ||
|- | |- | ||
! scope=row | 0x00,0xA6 | ! scope=row | 0x00,0xA6 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DH_anon_WITH_AES_128_GCM_SHA256 | | style="background-color: white;" | TLS_DH_anon_WITH_AES_128_GCM_SHA256 | ||
| style="background-color: white;" | TLS_DH_ANON_AES_128_GCM_SHA256 | | style="background-color: white;" | TLS_DH_ANON_AES_128_GCM_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | ADH-AES128-GCM-SHA256 | | style="background-color: white;" | ADH-AES128-GCM-SHA256 | ||
|- | |- | ||
! scope=row | 0x00,0xA7 | ! scope=row | 0x00,0xA7 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DH_anon_WITH_AES_256_GCM_SHA384 | | style="background-color: white;" | TLS_DH_anon_WITH_AES_256_GCM_SHA384 | ||
| style="background-color: white;" | TLS_DH_ANON_AES_256_GCM_SHA384 | | style="background-color: white;" | TLS_DH_ANON_AES_256_GCM_SHA384 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | ADH-AES256-GCM-SHA384 | | style="background-color: white;" | ADH-AES256-GCM-SHA384 | ||
|- | |- | ||
! scope=row | 0x00,0xA8 | ! scope=row | 0x00,0xA8 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_PSK_WITH_AES_128_GCM_SHA256 | | style="background-color: white;" | TLS_PSK_WITH_AES_128_GCM_SHA256 | ||
| style="background-color: white;" | TLS_PSK_AES_128_GCM_SHA256 | | style="background-color: white;" | TLS_PSK_AES_128_GCM_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | PSK-AES128-GCM-SHA256 | | style="background-color: white;" | PSK-AES128-GCM-SHA256 | ||
|- | |- | ||
! scope=row | 0x00,0xA9 | ! scope=row | 0x00,0xA9 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_PSK_WITH_AES_256_GCM_SHA384 | | style="background-color: white;" | TLS_PSK_WITH_AES_256_GCM_SHA384 | ||
| style="background-color: white;" | TLS_PSK_AES_256_GCM_SHA384 | | style="background-color: white;" | TLS_PSK_AES_256_GCM_SHA384 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | PSK-AES256-GCM-SHA384 | | style="background-color: white;" | PSK-AES256-GCM-SHA384 | ||
|- | |- | ||
! scope=row | 0x00,0xAA | ! scope=row | 0x00,0xAA | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DHE_PSK_WITH_AES_128_GCM_SHA256 | | style="background-color: white;" | TLS_DHE_PSK_WITH_AES_128_GCM_SHA256 | ||
| style="background-color: white;" | TLS_DHE_PSK_AES_128_GCM_SHA256 | | style="background-color: white;" | TLS_DHE_PSK_AES_128_GCM_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | DHE-PSK-AES128-GCM-SHA256 | | style="background-color: white;" | DHE-PSK-AES128-GCM-SHA256 | ||
|- | |- | ||
! scope=row | 0x00,0xAB | ! scope=row | 0x00,0xAB | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DHE_PSK_WITH_AES_256_GCM_SHA384 | | style="background-color: white;" | TLS_DHE_PSK_WITH_AES_256_GCM_SHA384 | ||
| style="background-color: white;" | TLS_DHE_PSK_AES_256_GCM_SHA384 | | style="background-color: white;" | TLS_DHE_PSK_AES_256_GCM_SHA384 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | DHE-PSK-AES256-GCM-SHA384 | | style="background-color: white;" | DHE-PSK-AES256-GCM-SHA384 | ||
|- | |- | ||
! scope=row | 0x00,0xAC | ! scope=row | 0x00,0xAC | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_RSA_PSK_WITH_AES_128_GCM_SHA256 | | style="background-color: white;" | TLS_RSA_PSK_WITH_AES_128_GCM_SHA256 | ||
| style="background-color: white;" | TLS_RSA_PSK_AES_128_GCM_SHA256 | | style="background-color: white;" | TLS_RSA_PSK_AES_128_GCM_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | RSA-PSK-AES128-GCM-SHA256 | | style="background-color: white;" | RSA-PSK-AES128-GCM-SHA256 | ||
|- | |- | ||
! scope=row | 0x00,0xAD | ! scope=row | 0x00,0xAD | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_RSA_PSK_WITH_AES_256_GCM_SHA384 | | style="background-color: white;" | TLS_RSA_PSK_WITH_AES_256_GCM_SHA384 | ||
| style="background-color: white;" | TLS_RSA_PSK_AES_256_GCM_SHA384 | | style="background-color: white;" | TLS_RSA_PSK_AES_256_GCM_SHA384 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | RSA-PSK-AES256-GCM-SHA384 | | style="background-color: white;" | RSA-PSK-AES256-GCM-SHA384 | ||
|- | |- | ||
! scope=row | 0x00,0xAE | ! scope=row | 0x00,0xAE | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_PSK_WITH_AES_128_CBC_SHA256 | | style="background-color: white;" | TLS_PSK_WITH_AES_128_CBC_SHA256 | ||
| style="background-color: white;" | TLS_PSK_AES_128_CBC_SHA256 | | style="background-color: white;" | TLS_PSK_AES_128_CBC_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | PSK-AES128-CBC-SHA256 | | style="background-color: white;" | PSK-AES128-CBC-SHA256 | ||
|- | |- | ||
! scope=row | 0x00,0xAF | ! scope=row | 0x00,0xAF | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_PSK_WITH_AES_256_CBC_SHA384 | | style="background-color: white;" | TLS_PSK_WITH_AES_256_CBC_SHA384 | ||
| style="background-color: white;" | TLS_PSK_AES_256_CBC_SHA384 | | style="background-color: white;" | TLS_PSK_AES_256_CBC_SHA384 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | PSK-AES256-CBC-SHA384 | | style="background-color: white;" | PSK-AES256-CBC-SHA384 | ||
|- | |- | ||
! scope=row | 0x00,0xB0 | ! scope=row | 0x00,0xB0 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_PSK_WITH_NULL_SHA256 | | style="background-color: white;" | TLS_PSK_WITH_NULL_SHA256 | ||
| style="background-color: white;" | TLS_PSK_NULL_SHA256 | | style="background-color: white;" | TLS_PSK_NULL_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | PSK-NULL-SHA256 | | style="background-color: white;" | PSK-NULL-SHA256 | ||
|- | |- | ||
! scope=row | 0x00,0xB1 | ! scope=row | 0x00,0xB1 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_PSK_WITH_NULL_SHA384 | | style="background-color: white;" | TLS_PSK_WITH_NULL_SHA384 | ||
| style="background-color: white;" | TLS_PSK_NULL_SHA384 | | style="background-color: white;" | TLS_PSK_NULL_SHA384 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | PSK-NULL-SHA384 | | style="background-color: white;" | PSK-NULL-SHA384 | ||
|- | |- | ||
! scope=row | 0x00,0xB2 | ! scope=row | 0x00,0xB2 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DHE_PSK_WITH_AES_128_CBC_SHA256 | | style="background-color: white;" | TLS_DHE_PSK_WITH_AES_128_CBC_SHA256 | ||
| style="background-color: white;" | TLS_DHE_PSK_AES_128_CBC_SHA256 | | style="background-color: white;" | TLS_DHE_PSK_AES_128_CBC_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | DHE-PSK-AES128-CBC-SHA256 | | style="background-color: white;" | DHE-PSK-AES128-CBC-SHA256 | ||
|- | |- | ||
! scope=row | 0x00,0xB3 | ! scope=row | 0x00,0xB3 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DHE_PSK_WITH_AES_256_CBC_SHA384 | | style="background-color: white;" | TLS_DHE_PSK_WITH_AES_256_CBC_SHA384 | ||
| style="background-color: white;" | TLS_DHE_PSK_AES_256_CBC_SHA384 | | style="background-color: white;" | TLS_DHE_PSK_AES_256_CBC_SHA384 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | DHE-PSK-AES256-CBC-SHA384 | | style="background-color: white;" | DHE-PSK-AES256-CBC-SHA384 | ||
|- | |- | ||
! scope=row | 0x00,0xB4 | ! scope=row | 0x00,0xB4 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DHE_PSK_WITH_NULL_SHA256 | | style="background-color: white;" | TLS_DHE_PSK_WITH_NULL_SHA256 | ||
| style="background-color: white;" | TLS_DHE_PSK_NULL_SHA256 | | style="background-color: white;" | TLS_DHE_PSK_NULL_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | DHE-PSK-NULL-SHA256 | | style="background-color: white;" | DHE-PSK-NULL-SHA256 | ||
|- | |- | ||
! scope=row | 0x00,0xB5 | ! scope=row | 0x00,0xB5 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DHE_PSK_WITH_NULL_SHA384 | | style="background-color: white;" | TLS_DHE_PSK_WITH_NULL_SHA384 | ||
| style="background-color: white;" | TLS_DHE_PSK_NULL_SHA384 | | style="background-color: white;" | TLS_DHE_PSK_NULL_SHA384 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | DHE-PSK-NULL-SHA384 | | style="background-color: white;" | DHE-PSK-NULL-SHA384 | ||
|- | |- | ||
! scope=row | 0x00,0xB6 | ! scope=row | 0x00,0xB6 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_RSA_PSK_WITH_AES_128_CBC_SHA256 | | style="background-color: white;" | TLS_RSA_PSK_WITH_AES_128_CBC_SHA256 | ||
| style="background-color: white;" | TLS_RSA_PSK_AES_128_CBC_SHA256 | | style="background-color: white;" | TLS_RSA_PSK_AES_128_CBC_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | RSA-PSK-AES128-CBC-SHA256 | | style="background-color: white;" | RSA-PSK-AES128-CBC-SHA256 | ||
|- | |- | ||
! scope=row | 0x00,0xB7 | ! scope=row | 0x00,0xB7 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_RSA_PSK_WITH_AES_256_CBC_SHA384 | | style="background-color: white;" | TLS_RSA_PSK_WITH_AES_256_CBC_SHA384 | ||
| style="background-color: white;" | TLS_RSA_PSK_AES_256_CBC_SHA384 | | style="background-color: white;" | TLS_RSA_PSK_AES_256_CBC_SHA384 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | RSA-PSK-AES256-CBC-SHA384 | | style="background-color: white;" | RSA-PSK-AES256-CBC-SHA384 | ||
|- | |- | ||
! scope=row | 0x00,0xB8 | ! scope=row | 0x00,0xB8 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_RSA_PSK_WITH_NULL_SHA256 | | style="background-color: white;" | TLS_RSA_PSK_WITH_NULL_SHA256 | ||
| style="background-color: white;" | TLS_RSA_PSK_NULL_SHA256 | | style="background-color: white;" | TLS_RSA_PSK_NULL_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | RSA-PSK-NULL-SHA256 | | style="background-color: white;" | RSA-PSK-NULL-SHA256 | ||
|- | |- | ||
! scope=row | 0x00,0xB9 | ! scope=row | 0x00,0xB9 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_RSA_PSK_WITH_NULL_SHA384 | | style="background-color: white;" | TLS_RSA_PSK_WITH_NULL_SHA384 | ||
| style="background-color: white;" | TLS_RSA_PSK_NULL_SHA384 | | style="background-color: white;" | TLS_RSA_PSK_NULL_SHA384 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | RSA-PSK-NULL-SHA384 | | style="background-color: white;" | RSA-PSK-NULL-SHA384 | ||
|- | |- | ||
! scope=row | 0x00,0xBA | ! scope=row | 0x00,0xBA | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_RSA_WITH_CAMELLIA_128_CBC_SHA256 | | style="background-color: white;" | TLS_RSA_WITH_CAMELLIA_128_CBC_SHA256 | ||
| style="background-color: white;" | TLS_RSA_CAMELLIA_128_CBC_SHA256 | | style="background-color: white;" | TLS_RSA_CAMELLIA_128_CBC_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | CAMELLIA128-SHA256 | | style="background-color: white;" | CAMELLIA128-SHA256 | ||
|- | |- | ||
! scope=row | 0x00,0xBB | ! scope=row | 0x00,0xBB | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DH_DSS_WITH_CAMELLIA_128_CBC_SHA256 | | style="background-color: white;" | TLS_DH_DSS_WITH_CAMELLIA_128_CBC_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | DH-DSS-CAMELLIA128-SHA256 | | style="background-color: white;" | DH-DSS-CAMELLIA128-SHA256 | ||
|- | |- | ||
! scope=row | 0x00,0xBC | ! scope=row | 0x00,0xBC | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DH_RSA_WITH_CAMELLIA_128_CBC_SHA256 | | style="background-color: white;" | TLS_DH_RSA_WITH_CAMELLIA_128_CBC_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | DH-RSA-CAMELLIA128-SHA256 | | style="background-color: white;" | DH-RSA-CAMELLIA128-SHA256 | ||
|- | |- | ||
! scope=row | 0x00,0xBD | ! scope=row | 0x00,0xBD | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DHE_DSS_WITH_CAMELLIA_128_CBC_SHA256 | | style="background-color: white;" | TLS_DHE_DSS_WITH_CAMELLIA_128_CBC_SHA256 | ||
| style="background-color: white;" | TLS_DHE_DSS_CAMELLIA_128_CBC_SHA256 | | style="background-color: white;" | TLS_DHE_DSS_CAMELLIA_128_CBC_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | DHE-DSS-CAMELLIA128-SHA256 | | style="background-color: white;" | DHE-DSS-CAMELLIA128-SHA256 | ||
|- | |- | ||
! scope=row | 0x00,0xBE | ! scope=row | 0x00,0xBE | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA256 | | style="background-color: white;" | TLS_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA256 | ||
| style="background-color: white;" | TLS_DHE_RSA_CAMELLIA_128_CBC_SHA256 | | style="background-color: white;" | TLS_DHE_RSA_CAMELLIA_128_CBC_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | DHE-RSA-CAMELLIA128-SHA256 | | style="background-color: white;" | DHE-RSA-CAMELLIA128-SHA256 | ||
|- | |- | ||
! scope=row | 0x00,0xBF | ! scope=row | 0x00,0xBF | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DH_anon_WITH_CAMELLIA_128_CBC_SHA256 | | style="background-color: white;" | TLS_DH_anon_WITH_CAMELLIA_128_CBC_SHA256 | ||
| style="background-color: white;" | TLS_DH_ANON_CAMELLIA_128_CBC_SHA256 | | style="background-color: white;" | TLS_DH_ANON_CAMELLIA_128_CBC_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | ADH-CAMELLIA128-SHA256 | | style="background-color: white;" | ADH-CAMELLIA128-SHA256 | ||
|- | |- | ||
! scope=row | 0x00,0xC0 | ! scope=row | 0x00,0xC0 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_RSA_WITH_CAMELLIA_256_CBC_SHA256 | | style="background-color: white;" | TLS_RSA_WITH_CAMELLIA_256_CBC_SHA256 | ||
| style="background-color: white;" | TLS_RSA_CAMELLIA_256_CBC_SHA256 | | style="background-color: white;" | TLS_RSA_CAMELLIA_256_CBC_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | CAMELLIA256-SHA256 | | style="background-color: white;" | CAMELLIA256-SHA256 | ||
|- | |- | ||
! scope=row | 0x00,0xC1 | ! scope=row | 0x00,0xC1 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DH_DSS_WITH_CAMELLIA_256_CBC_SHA256 | | style="background-color: white;" | TLS_DH_DSS_WITH_CAMELLIA_256_CBC_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | DH-DSS-CAMELLIA256-SHA256 | | style="background-color: white;" | DH-DSS-CAMELLIA256-SHA256 | ||
|- | |- | ||
! scope=row | 0x00,0xC2 | ! scope=row | 0x00,0xC2 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DH_RSA_WITH_CAMELLIA_256_CBC_SHA256 | | style="background-color: white;" | TLS_DH_RSA_WITH_CAMELLIA_256_CBC_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | DH-RSA-CAMELLIA256-SHA256 | | style="background-color: white;" | DH-RSA-CAMELLIA256-SHA256 | ||
|- | |- | ||
! scope=row | 0x00,0xC3 | ! scope=row | 0x00,0xC3 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DHE_DSS_WITH_CAMELLIA_256_CBC_SHA256 | | style="background-color: white;" | TLS_DHE_DSS_WITH_CAMELLIA_256_CBC_SHA256 | ||
| style="background-color: white;" | TLS_DHE_DSS_CAMELLIA_256_CBC_SHA256 | | style="background-color: white;" | TLS_DHE_DSS_CAMELLIA_256_CBC_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | DHE-DSS-CAMELLIA256-SHA256 | | style="background-color: white;" | DHE-DSS-CAMELLIA256-SHA256 | ||
|- | |- | ||
! scope=row | 0x00,0xC4 | ! scope=row | 0x00,0xC4 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA256 | | style="background-color: white;" | TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA256 | ||
| style="background-color: white;" | TLS_DHE_RSA_CAMELLIA_256_CBC_SHA256 | | style="background-color: white;" | TLS_DHE_RSA_CAMELLIA_256_CBC_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | DHE-RSA-CAMELLIA256-SHA256 | | style="background-color: white;" | DHE-RSA-CAMELLIA256-SHA256 | ||
|- | |- | ||
! scope=row | 0x00,0xC5 | ! scope=row | 0x00,0xC5 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DH_anon_WITH_CAMELLIA_256_CBC_SHA256 | | style="background-color: white;" | TLS_DH_anon_WITH_CAMELLIA_256_CBC_SHA256 | ||
| style="background-color: white;" | TLS_DH_ANON_CAMELLIA_256_CBC_SHA256 | | style="background-color: white;" | TLS_DH_ANON_CAMELLIA_256_CBC_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | ADH-CAMELLIA256-SHA256 | | style="background-color: white;" | ADH-CAMELLIA256-SHA256 | ||
|- | |- | ||
! scope=row | 0x00,0xFF | ! scope=row | 0x00,0xFF | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_EMPTY_RENEGOTIATION_INFO_SCSV | | style="background-color: white;" | TLS_EMPTY_RENEGOTIATION_INFO_SCSV | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | TLS_EMPTY_RENEGOTIATION_INFO_SCSV | | style="background-color: white;" | TLS_EMPTY_RENEGOTIATION_INFO_SCSV | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0x56,0x00 | ! scope=row | 0x56,0x00 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_FALLBACK_SCSV | | style="background-color: white;" | TLS_FALLBACK_SCSV | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | TLS_FALLBACK_SCSV | | style="background-color: white;" | TLS_FALLBACK_SCSV | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x01 | ! scope=row | 0xC0,0x01 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDH_ECDSA_WITH_NULL_SHA | | style="background-color: white;" | TLS_ECDH_ECDSA_WITH_NULL_SHA | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | TLS_ECDH_ECDSA_WITH_NULL_SHA | | style="background-color: white;" | TLS_ECDH_ECDSA_WITH_NULL_SHA | ||
| style="background-color: white;" | ECDH-ECDSA-NULL-SHA | | style="background-color: white;" | ECDH-ECDSA-NULL-SHA | ||
|- | |- | ||
! scope=row | 0xC0,0x02 | ! scope=row | 0xC0,0x02 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDH_ECDSA_WITH_RC4_128_SHA | | style="background-color: white;" | TLS_ECDH_ECDSA_WITH_RC4_128_SHA | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | TLS_ECDH_ECDSA_WITH_RC4_128_SHA | | style="background-color: white;" | TLS_ECDH_ECDSA_WITH_RC4_128_SHA | ||
| style="background-color: white;" | ECDH-ECDSA-RC4-SHA | | style="background-color: white;" | ECDH-ECDSA-RC4-SHA | ||
|- | |- | ||
! scope=row | 0xC0,0x03 | ! scope=row | 0xC0,0x03 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDH_ECDSA_WITH_3DES_EDE_CBC_SHA | | style="background-color: white;" | TLS_ECDH_ECDSA_WITH_3DES_EDE_CBC_SHA | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | TLS_ECDH_ECDSA_WITH_3DES_EDE_CBC_SHA | | style="background-color: white;" | TLS_ECDH_ECDSA_WITH_3DES_EDE_CBC_SHA | ||
| style="background-color: white;" | ECDH-ECDSA-DES-CBC3-SHA | | style="background-color: white;" | ECDH-ECDSA-DES-CBC3-SHA | ||
|- | |- | ||
! scope=row | 0xC0,0x04 | ! scope=row | 0xC0,0x04 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA | | style="background-color: white;" | TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA | | style="background-color: white;" | TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA | ||
| style="background-color: white;" | ECDH-ECDSA-AES128-SHA | | style="background-color: white;" | ECDH-ECDSA-AES128-SHA | ||
|- | |- | ||
! scope=row | 0xC0,0x05 | ! scope=row | 0xC0,0x05 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA | | style="background-color: white;" | TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA | | style="background-color: white;" | TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA | ||
| style="background-color: white;" | ECDH-ECDSA-AES256-SHA | | style="background-color: white;" | ECDH-ECDSA-AES256-SHA | ||
|- | |- | ||
! scope=row | 0xC0,0x06 | ! scope=row | 0xC0,0x06 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDHE_ECDSA_WITH_NULL_SHA | | style="background-color: white;" | TLS_ECDHE_ECDSA_WITH_NULL_SHA | ||
| style="background-color: white;" | TLS_ECDHE_ECDSA_NULL_SHA1 | | style="background-color: white;" | TLS_ECDHE_ECDSA_NULL_SHA1 | ||
Line 2,309: | Line 1,728: | ||
|- | |- | ||
! scope=row | 0xC0,0x07 | ! scope=row | 0xC0,0x07 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDHE_ECDSA_WITH_RC4_128_SHA | | style="background-color: white;" | TLS_ECDHE_ECDSA_WITH_RC4_128_SHA | ||
| style="background-color: white;" | TLS_ECDHE_ECDSA_ARCFOUR_128_SHA1 | | style="background-color: white;" | TLS_ECDHE_ECDSA_ARCFOUR_128_SHA1 | ||
Line 2,316: | Line 1,735: | ||
|- | |- | ||
! scope=row | 0xC0,0x0B | ! scope=row | 0xC0,0x0B | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDH_RSA_WITH_NULL_SHA | | style="background-color: white;" | TLS_ECDH_RSA_WITH_NULL_SHA | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | TLS_ECDH_RSA_WITH_NULL_SHA | | style="background-color: white;" | TLS_ECDH_RSA_WITH_NULL_SHA | ||
| style="background-color: white;" | ECDH-RSA-NULL-SHA | | style="background-color: white;" | ECDH-RSA-NULL-SHA | ||
|- | |- | ||
! scope=row | 0xC0,0x0C | ! scope=row | 0xC0,0x0C | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDH_RSA_WITH_RC4_128_SHA | | style="background-color: white;" | TLS_ECDH_RSA_WITH_RC4_128_SHA | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | TLS_ECDH_RSA_WITH_RC4_128_SHA | | style="background-color: white;" | TLS_ECDH_RSA_WITH_RC4_128_SHA | ||
| style="background-color: white;" | ECDH-RSA-RC4-SHA | | style="background-color: white;" | ECDH-RSA-RC4-SHA | ||
|- | |- | ||
! scope=row | 0xC0,0x0D | ! scope=row | 0xC0,0x0D | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDH_RSA_WITH_3DES_EDE_CBC_SHA | | style="background-color: white;" | TLS_ECDH_RSA_WITH_3DES_EDE_CBC_SHA | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | TLS_ECDH_RSA_WITH_3DES_EDE_CBC_SHA | | style="background-color: white;" | TLS_ECDH_RSA_WITH_3DES_EDE_CBC_SHA | ||
| style="background-color: white;" | ECDH-RSA-DES-CBC3-SHA | | style="background-color: white;" | ECDH-RSA-DES-CBC3-SHA | ||
|- | |- | ||
! scope=row | 0xC0,0x0E | ! scope=row | 0xC0,0x0E | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDH_RSA_WITH_AES_128_CBC_SHA | | style="background-color: white;" | TLS_ECDH_RSA_WITH_AES_128_CBC_SHA | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | TLS_ECDH_RSA_WITH_AES_128_CBC_SHA | | style="background-color: white;" | TLS_ECDH_RSA_WITH_AES_128_CBC_SHA | ||
| style="background-color: white;" | ECDH-RSA-AES128-SHA | | style="background-color: white;" | ECDH-RSA-AES128-SHA | ||
|- | |- | ||
! scope=row | 0xC0,0x0F | ! scope=row | 0xC0,0x0F | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDH_RSA_WITH_AES_256_CBC_SHA | | style="background-color: white;" | TLS_ECDH_RSA_WITH_AES_256_CBC_SHA | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | TLS_ECDH_RSA_WITH_AES_256_CBC_SHA | | style="background-color: white;" | TLS_ECDH_RSA_WITH_AES_256_CBC_SHA | ||
| style="background-color: white;" | ECDH-RSA-AES256-SHA | | style="background-color: white;" | ECDH-RSA-AES256-SHA | ||
|- | |- | ||
! scope=row | 0xC0,0x10 | ! scope=row | 0xC0,0x10 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDHE_RSA_WITH_NULL_SHA | | style="background-color: white;" | TLS_ECDHE_RSA_WITH_NULL_SHA | ||
| style="background-color: white;" | TLS_ECDHE_RSA_NULL_SHA1 | | style="background-color: white;" | TLS_ECDHE_RSA_NULL_SHA1 | ||
Line 2,358: | Line 1,777: | ||
|- | |- | ||
! scope=row | 0xC0,0x11 | ! scope=row | 0xC0,0x11 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDHE_RSA_WITH_RC4_128_SHA | | style="background-color: white;" | TLS_ECDHE_RSA_WITH_RC4_128_SHA | ||
| style="background-color: white;" | TLS_ECDHE_RSA_ARCFOUR_128_SHA1 | | style="background-color: white;" | TLS_ECDHE_RSA_ARCFOUR_128_SHA1 | ||
Line 2,365: | Line 1,784: | ||
|- | |- | ||
! scope=row | 0xC0,0x15 | ! scope=row | 0xC0,0x15 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDH_anon_WITH_NULL_SHA | | style="background-color: white;" | TLS_ECDH_anon_WITH_NULL_SHA | ||
| style="background-color: white;" | TLS_ECDH_ANON_NULL_SHA1 | | style="background-color: white;" | TLS_ECDH_ANON_NULL_SHA1 | ||
Line 2,372: | Line 1,791: | ||
|- | |- | ||
! scope=row | 0xC0,0x16 | ! scope=row | 0xC0,0x16 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDH_anon_WITH_RC4_128_SHA | | style="background-color: white;" | TLS_ECDH_anon_WITH_RC4_128_SHA | ||
| style="background-color: white;" | TLS_ECDH_ANON_ARCFOUR_128_SHA1 | | style="background-color: white;" | TLS_ECDH_ANON_ARCFOUR_128_SHA1 | ||
Line 2,379: | Line 1,798: | ||
|- | |- | ||
! scope=row | 0xC0,0x17 | ! scope=row | 0xC0,0x17 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDH_anon_WITH_3DES_EDE_CBC_SHA | | style="background-color: white;" | TLS_ECDH_anon_WITH_3DES_EDE_CBC_SHA | ||
| style="background-color: white;" | TLS_ECDH_ANON_3DES_EDE_CBC_SHA1 | | style="background-color: white;" | TLS_ECDH_ANON_3DES_EDE_CBC_SHA1 | ||
Line 2,386: | Line 1,805: | ||
|- | |- | ||
! scope=row | 0xC0,0x18 | ! scope=row | 0xC0,0x18 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDH_anon_WITH_AES_128_CBC_SHA | | style="background-color: white;" | TLS_ECDH_anon_WITH_AES_128_CBC_SHA | ||
| style="background-color: white;" | TLS_ECDH_ANON_AES_128_CBC_SHA1 | | style="background-color: white;" | TLS_ECDH_ANON_AES_128_CBC_SHA1 | ||
Line 2,393: | Line 1,812: | ||
|- | |- | ||
! scope=row | 0xC0,0x19 | ! scope=row | 0xC0,0x19 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDH_anon_WITH_AES_256_CBC_SHA | | style="background-color: white;" | TLS_ECDH_anon_WITH_AES_256_CBC_SHA | ||
| style="background-color: white;" | TLS_ECDH_ANON_AES_256_CBC_SHA1 | | style="background-color: white;" | TLS_ECDH_ANON_AES_256_CBC_SHA1 | ||
Line 2,400: | Line 1,819: | ||
|- | |- | ||
! scope=row | 0xC0,0x25 | ! scope=row | 0xC0,0x25 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA256 | | style="background-color: white;" | TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | ECDH-ECDSA-AES128-SHA256 | | style="background-color: white;" | ECDH-ECDSA-AES128-SHA256 | ||
|- | |- | ||
! scope=row | 0xC0,0x26 | ! scope=row | 0xC0,0x26 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA384 | | style="background-color: white;" | TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA384 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | ECDH-ECDSA-AES256-SHA384 | | style="background-color: white;" | ECDH-ECDSA-AES256-SHA384 | ||
|- | |- | ||
! scope=row | 0xC0,0x29 | ! scope=row | 0xC0,0x29 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDH_RSA_WITH_AES_128_CBC_SHA256 | | style="background-color: white;" | TLS_ECDH_RSA_WITH_AES_128_CBC_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | ECDH-RSA-AES128-SHA256 | | style="background-color: white;" | ECDH-RSA-AES128-SHA256 | ||
|- | |- | ||
! scope=row | 0xC0,0x2A | ! scope=row | 0xC0,0x2A | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDH_RSA_WITH_AES_256_CBC_SHA384 | | style="background-color: white;" | TLS_ECDH_RSA_WITH_AES_256_CBC_SHA384 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | ECDH-RSA-AES256-SHA384 | | style="background-color: white;" | ECDH-RSA-AES256-SHA384 | ||
|- | |- | ||
! scope=row | 0xC0,0x2D | ! scope=row | 0xC0,0x2D | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDH_ECDSA_WITH_AES_128_GCM_SHA256 | | style="background-color: white;" | TLS_ECDH_ECDSA_WITH_AES_128_GCM_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | TLS_ECDH_ECDSA_WITH_AES_128_GCM_SHA256 | | style="background-color: white;" | TLS_ECDH_ECDSA_WITH_AES_128_GCM_SHA256 | ||
| style="background-color: white;" | ECDH-ECDSA-AES128-GCM-SHA256 | | style="background-color: white;" | ECDH-ECDSA-AES128-GCM-SHA256 | ||
|- | |- | ||
! scope=row | 0xC0,0x2E | ! scope=row | 0xC0,0x2E | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDH_ECDSA_WITH_AES_256_GCM_SHA384 | | style="background-color: white;" | TLS_ECDH_ECDSA_WITH_AES_256_GCM_SHA384 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | ECDH-ECDSA-AES256-GCM-SHA384 | | style="background-color: white;" | ECDH-ECDSA-AES256-GCM-SHA384 | ||
|- | |- | ||
! scope=row | 0xC0,0x31 | ! scope=row | 0xC0,0x31 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDH_RSA_WITH_AES_128_GCM_SHA256 | | style="background-color: white;" | TLS_ECDH_RSA_WITH_AES_128_GCM_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | TLS_ECDH_RSA_WITH_AES_128_GCM_SHA256 | | style="background-color: white;" | TLS_ECDH_RSA_WITH_AES_128_GCM_SHA256 | ||
| style="background-color: white;" | ECDH-RSA-AES128-GCM-SHA256 | | style="background-color: white;" | ECDH-RSA-AES128-GCM-SHA256 | ||
|- | |- | ||
! scope=row | 0xC0,0x32 | ! scope=row | 0xC0,0x32 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDH_RSA_WITH_AES_256_GCM_SHA384 | | style="background-color: white;" | TLS_ECDH_RSA_WITH_AES_256_GCM_SHA384 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | ECDH-RSA-AES256-GCM-SHA384 | | style="background-color: white;" | ECDH-RSA-AES256-GCM-SHA384 | ||
|- | |- | ||
! scope=row | 0xC0,0x33 | ! scope=row | 0xC0,0x33 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDHE_PSK_WITH_RC4_128_SHA | | style="background-color: white;" | TLS_ECDHE_PSK_WITH_RC4_128_SHA | ||
| style="background-color: white;" | TLS_ECDHE_PSK_ARCFOUR_128_SHA1 | | style="background-color: white;" | TLS_ECDHE_PSK_ARCFOUR_128_SHA1 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | ECDHE-PSK-RC4-SHA | | style="background-color: white;" | ECDHE-PSK-RC4-SHA | ||
|- | |- | ||
! scope=row | 0xC0,0x34 | ! scope=row | 0xC0,0x34 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDHE_PSK_WITH_3DES_EDE_CBC_SHA | | style="background-color: white;" | TLS_ECDHE_PSK_WITH_3DES_EDE_CBC_SHA | ||
| style="background-color: white;" | TLS_ECDHE_PSK_3DES_EDE_CBC_SHA1 | | style="background-color: white;" | TLS_ECDHE_PSK_3DES_EDE_CBC_SHA1 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | ECDHE-PSK-3DES-EDE-CBC-SHA | | style="background-color: white;" | ECDHE-PSK-3DES-EDE-CBC-SHA | ||
|- | |- | ||
! scope=row | 0xC0,0x35 | ! scope=row | 0xC0,0x35 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA | | style="background-color: white;" | TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA | ||
| style="background-color: white;" | TLS_ECDHE_PSK_AES_128_CBC_SHA1 | | style="background-color: white;" | TLS_ECDHE_PSK_AES_128_CBC_SHA1 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | ECDHE-PSK-AES128-CBC-SHA | | style="background-color: white;" | ECDHE-PSK-AES128-CBC-SHA | ||
|- | |- | ||
! scope=row | 0xC0,0x36 | ! scope=row | 0xC0,0x36 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDHE_PSK_WITH_AES_256_CBC_SHA | | style="background-color: white;" | TLS_ECDHE_PSK_WITH_AES_256_CBC_SHA | ||
| style="background-color: white;" | TLS_ECDHE_PSK_AES_256_CBC_SHA1 | | style="background-color: white;" | TLS_ECDHE_PSK_AES_256_CBC_SHA1 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | ECDHE-PSK-AES256-CBC-SHA | | style="background-color: white;" | ECDHE-PSK-AES256-CBC-SHA | ||
|- | |- | ||
! scope=row | 0xC0,0x37 | ! scope=row | 0xC0,0x37 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA256 | | style="background-color: white;" | TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA256 | ||
| style="background-color: white;" | TLS_ECDHE_PSK_AES_128_CBC_SHA256 | | style="background-color: white;" | TLS_ECDHE_PSK_AES_128_CBC_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | ECDHE-PSK-AES128-CBC-SHA256 | | style="background-color: white;" | ECDHE-PSK-AES128-CBC-SHA256 | ||
|- | |- | ||
! scope=row | 0xC0,0x38 | ! scope=row | 0xC0,0x38 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDHE_PSK_WITH_AES_256_CBC_SHA384 | | style="background-color: white;" | TLS_ECDHE_PSK_WITH_AES_256_CBC_SHA384 | ||
| style="background-color: white;" | TLS_ECDHE_PSK_AES_256_CBC_SHA384 | | style="background-color: white;" | TLS_ECDHE_PSK_AES_256_CBC_SHA384 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | ECDHE-PSK-AES256-CBC-SHA384 | | style="background-color: white;" | ECDHE-PSK-AES256-CBC-SHA384 | ||
|- | |- | ||
! scope=row | 0xC0,0x39 | ! scope=row | 0xC0,0x39 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDHE_PSK_WITH_NULL_SHA | | style="background-color: white;" | TLS_ECDHE_PSK_WITH_NULL_SHA | ||
| style="background-color: white;" | TLS_ECDHE_PSK_NULL_SHA1 | | style="background-color: white;" | TLS_ECDHE_PSK_NULL_SHA1 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | ECDHE-PSK-NULL-SHA | | style="background-color: white;" | ECDHE-PSK-NULL-SHA | ||
|- | |- | ||
! scope=row | 0xC0,0x3A | ! scope=row | 0xC0,0x3A | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDHE_PSK_WITH_NULL_SHA256 | | style="background-color: white;" | TLS_ECDHE_PSK_WITH_NULL_SHA256 | ||
| style="background-color: white;" | TLS_ECDHE_PSK_NULL_SHA256 | | style="background-color: white;" | TLS_ECDHE_PSK_NULL_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | ECDHE-PSK-NULL-SHA256 | | style="background-color: white;" | ECDHE-PSK-NULL-SHA256 | ||
|- | |- | ||
! scope=row | 0xC0,0x3B | ! scope=row | 0xC0,0x3B | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDHE_PSK_WITH_NULL_SHA384 | | style="background-color: white;" | TLS_ECDHE_PSK_WITH_NULL_SHA384 | ||
| style="background-color: white;" | TLS_ECDHE_PSK_NULL_SHA384 | | style="background-color: white;" | TLS_ECDHE_PSK_NULL_SHA384 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | ECDHE-PSK-NULL-SHA384 | | style="background-color: white;" | ECDHE-PSK-NULL-SHA384 | ||
|- | |- | ||
! scope=row | 0xC0,0x3C | ! scope=row | 0xC0,0x3C | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_RSA_WITH_ARIA_128_CBC_SHA256 | | style="background-color: white;" | TLS_RSA_WITH_ARIA_128_CBC_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x3D | ! scope=row | 0xC0,0x3D | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_RSA_WITH_ARIA_256_CBC_SHA384 | | style="background-color: white;" | TLS_RSA_WITH_ARIA_256_CBC_SHA384 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x3E | ! scope=row | 0xC0,0x3E | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DH_DSS_WITH_ARIA_128_CBC_SHA256 | | style="background-color: white;" | TLS_DH_DSS_WITH_ARIA_128_CBC_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x3F | ! scope=row | 0xC0,0x3F | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DH_DSS_WITH_ARIA_256_CBC_SHA384 | | style="background-color: white;" | TLS_DH_DSS_WITH_ARIA_256_CBC_SHA384 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x40 | ! scope=row | 0xC0,0x40 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DH_RSA_WITH_ARIA_128_CBC_SHA256 | | style="background-color: white;" | TLS_DH_RSA_WITH_ARIA_128_CBC_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x41 | ! scope=row | 0xC0,0x41 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DH_RSA_WITH_ARIA_256_CBC_SHA384 | | style="background-color: white;" | TLS_DH_RSA_WITH_ARIA_256_CBC_SHA384 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x42 | ! scope=row | 0xC0,0x42 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DHE_DSS_WITH_ARIA_128_CBC_SHA256 | | style="background-color: white;" | TLS_DHE_DSS_WITH_ARIA_128_CBC_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x43 | ! scope=row | 0xC0,0x43 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DHE_DSS_WITH_ARIA_256_CBC_SHA384 | | style="background-color: white;" | TLS_DHE_DSS_WITH_ARIA_256_CBC_SHA384 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x44 | ! scope=row | 0xC0,0x44 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DHE_RSA_WITH_ARIA_128_CBC_SHA256 | | style="background-color: white;" | TLS_DHE_RSA_WITH_ARIA_128_CBC_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x45 | ! scope=row | 0xC0,0x45 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DHE_RSA_WITH_ARIA_256_CBC_SHA384 | | style="background-color: white;" | TLS_DHE_RSA_WITH_ARIA_256_CBC_SHA384 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x46 | ! scope=row | 0xC0,0x46 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DH_anon_WITH_ARIA_128_CBC_SHA256 | | style="background-color: white;" | TLS_DH_anon_WITH_ARIA_128_CBC_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x47 | ! scope=row | 0xC0,0x47 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DH_anon_WITH_ARIA_256_CBC_SHA384 | | style="background-color: white;" | TLS_DH_anon_WITH_ARIA_256_CBC_SHA384 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x48 | ! scope=row | 0xC0,0x48 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDHE_ECDSA_WITH_ARIA_128_CBC_SHA256 | | style="background-color: white;" | TLS_ECDHE_ECDSA_WITH_ARIA_128_CBC_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x49 | ! scope=row | 0xC0,0x49 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDHE_ECDSA_WITH_ARIA_256_CBC_SHA384 | | style="background-color: white;" | TLS_ECDHE_ECDSA_WITH_ARIA_256_CBC_SHA384 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x4A | ! scope=row | 0xC0,0x4A | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDH_ECDSA_WITH_ARIA_128_CBC_SHA256 | | style="background-color: white;" | TLS_ECDH_ECDSA_WITH_ARIA_128_CBC_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x4B | ! scope=row | 0xC0,0x4B | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDH_ECDSA_WITH_ARIA_256_CBC_SHA384 | | style="background-color: white;" | TLS_ECDH_ECDSA_WITH_ARIA_256_CBC_SHA384 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x4C | ! scope=row | 0xC0,0x4C | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDHE_RSA_WITH_ARIA_128_CBC_SHA256 | | style="background-color: white;" | TLS_ECDHE_RSA_WITH_ARIA_128_CBC_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x4D | ! scope=row | 0xC0,0x4D | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDHE_RSA_WITH_ARIA_256_CBC_SHA384 | | style="background-color: white;" | TLS_ECDHE_RSA_WITH_ARIA_256_CBC_SHA384 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x4E | ! scope=row | 0xC0,0x4E | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDH_RSA_WITH_ARIA_128_CBC_SHA256 | | style="background-color: white;" | TLS_ECDH_RSA_WITH_ARIA_128_CBC_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x4F | ! scope=row | 0xC0,0x4F | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDH_RSA_WITH_ARIA_256_CBC_SHA384 | | style="background-color: white;" | TLS_ECDH_RSA_WITH_ARIA_256_CBC_SHA384 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x50 | ! scope=row | 0xC0,0x50 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_RSA_WITH_ARIA_128_GCM_SHA256 | | style="background-color: white;" | TLS_RSA_WITH_ARIA_128_GCM_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x51 | ! scope=row | 0xC0,0x51 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_RSA_WITH_ARIA_256_GCM_SHA384 | | style="background-color: white;" | TLS_RSA_WITH_ARIA_256_GCM_SHA384 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x52 | ! scope=row | 0xC0,0x52 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DHE_RSA_WITH_ARIA_128_GCM_SHA256 | | style="background-color: white;" | TLS_DHE_RSA_WITH_ARIA_128_GCM_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x53 | ! scope=row | 0xC0,0x53 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DHE_RSA_WITH_ARIA_256_GCM_SHA384 | | style="background-color: white;" | TLS_DHE_RSA_WITH_ARIA_256_GCM_SHA384 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x54 | ! scope=row | 0xC0,0x54 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DH_RSA_WITH_ARIA_128_GCM_SHA256 | | style="background-color: white;" | TLS_DH_RSA_WITH_ARIA_128_GCM_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x55 | ! scope=row | 0xC0,0x55 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DH_RSA_WITH_ARIA_256_GCM_SHA384 | | style="background-color: white;" | TLS_DH_RSA_WITH_ARIA_256_GCM_SHA384 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x56 | ! scope=row | 0xC0,0x56 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DHE_DSS_WITH_ARIA_128_GCM_SHA256 | | style="background-color: white;" | TLS_DHE_DSS_WITH_ARIA_128_GCM_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x57 | ! scope=row | 0xC0,0x57 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DHE_DSS_WITH_ARIA_256_GCM_SHA384 | | style="background-color: white;" | TLS_DHE_DSS_WITH_ARIA_256_GCM_SHA384 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x58 | ! scope=row | 0xC0,0x58 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DH_DSS_WITH_ARIA_128_GCM_SHA256 | | style="background-color: white;" | TLS_DH_DSS_WITH_ARIA_128_GCM_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x59 | ! scope=row | 0xC0,0x59 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DH_DSS_WITH_ARIA_256_GCM_SHA384 | | style="background-color: white;" | TLS_DH_DSS_WITH_ARIA_256_GCM_SHA384 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x5A | ! scope=row | 0xC0,0x5A | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DH_anon_WITH_ARIA_128_GCM_SHA256 | | style="background-color: white;" | TLS_DH_anon_WITH_ARIA_128_GCM_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x5B | ! scope=row | 0xC0,0x5B | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DH_anon_WITH_ARIA_256_GCM_SHA384 | | style="background-color: white;" | TLS_DH_anon_WITH_ARIA_256_GCM_SHA384 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x5C | ! scope=row | 0xC0,0x5C | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDHE_ECDSA_WITH_ARIA_128_GCM_SHA256 | | style="background-color: white;" | TLS_ECDHE_ECDSA_WITH_ARIA_128_GCM_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x5D | ! scope=row | 0xC0,0x5D | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDHE_ECDSA_WITH_ARIA_256_GCM_SHA384 | | style="background-color: white;" | TLS_ECDHE_ECDSA_WITH_ARIA_256_GCM_SHA384 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x5E | ! scope=row | 0xC0,0x5E | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDH_ECDSA_WITH_ARIA_128_GCM_SHA256 | | style="background-color: white;" | TLS_ECDH_ECDSA_WITH_ARIA_128_GCM_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x5F | ! scope=row | 0xC0,0x5F | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDH_ECDSA_WITH_ARIA_256_GCM_SHA384 | | style="background-color: white;" | TLS_ECDH_ECDSA_WITH_ARIA_256_GCM_SHA384 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x60 | ! scope=row | 0xC0,0x60 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDHE_RSA_WITH_ARIA_128_GCM_SHA256 | | style="background-color: white;" | TLS_ECDHE_RSA_WITH_ARIA_128_GCM_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x61 | ! scope=row | 0xC0,0x61 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDHE_RSA_WITH_ARIA_256_GCM_SHA384 | | style="background-color: white;" | TLS_ECDHE_RSA_WITH_ARIA_256_GCM_SHA384 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x62 | ! scope=row | 0xC0,0x62 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDH_RSA_WITH_ARIA_128_GCM_SHA256 | | style="background-color: white;" | TLS_ECDH_RSA_WITH_ARIA_128_GCM_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x63 | ! scope=row | 0xC0,0x63 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDH_RSA_WITH_ARIA_256_GCM_SHA384 | | style="background-color: white;" | TLS_ECDH_RSA_WITH_ARIA_256_GCM_SHA384 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x64 | ! scope=row | 0xC0,0x64 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_PSK_WITH_ARIA_128_CBC_SHA256 | | style="background-color: white;" | TLS_PSK_WITH_ARIA_128_CBC_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x65 | ! scope=row | 0xC0,0x65 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_PSK_WITH_ARIA_256_CBC_SHA384 | | style="background-color: white;" | TLS_PSK_WITH_ARIA_256_CBC_SHA384 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x66 | ! scope=row | 0xC0,0x66 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DHE_PSK_WITH_ARIA_128_CBC_SHA256 | | style="background-color: white;" | TLS_DHE_PSK_WITH_ARIA_128_CBC_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x67 | ! scope=row | 0xC0,0x67 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DHE_PSK_WITH_ARIA_256_CBC_SHA384 | | style="background-color: white;" | TLS_DHE_PSK_WITH_ARIA_256_CBC_SHA384 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x68 | ! scope=row | 0xC0,0x68 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_RSA_PSK_WITH_ARIA_128_CBC_SHA256 | | style="background-color: white;" | TLS_RSA_PSK_WITH_ARIA_128_CBC_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x69 | ! scope=row | 0xC0,0x69 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_RSA_PSK_WITH_ARIA_256_CBC_SHA384 | | style="background-color: white;" | TLS_RSA_PSK_WITH_ARIA_256_CBC_SHA384 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x6A | ! scope=row | 0xC0,0x6A | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_PSK_WITH_ARIA_128_GCM_SHA256 | | style="background-color: white;" | TLS_PSK_WITH_ARIA_128_GCM_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x6B | ! scope=row | 0xC0,0x6B | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_PSK_WITH_ARIA_256_GCM_SHA384 | | style="background-color: white;" | TLS_PSK_WITH_ARIA_256_GCM_SHA384 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x6C | ! scope=row | 0xC0,0x6C | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DHE_PSK_WITH_ARIA_128_GCM_SHA256 | | style="background-color: white;" | TLS_DHE_PSK_WITH_ARIA_128_GCM_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x6D | ! scope=row | 0xC0,0x6D | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DHE_PSK_WITH_ARIA_256_GCM_SHA384 | | style="background-color: white;" | TLS_DHE_PSK_WITH_ARIA_256_GCM_SHA384 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x6E | ! scope=row | 0xC0,0x6E | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_RSA_PSK_WITH_ARIA_128_GCM_SHA256 | | style="background-color: white;" | TLS_RSA_PSK_WITH_ARIA_128_GCM_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x6F | ! scope=row | 0xC0,0x6F | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_RSA_PSK_WITH_ARIA_256_GCM_SHA384 | | style="background-color: white;" | TLS_RSA_PSK_WITH_ARIA_256_GCM_SHA384 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x70 | ! scope=row | 0xC0,0x70 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDHE_PSK_WITH_ARIA_128_CBC_SHA256 | | style="background-color: white;" | TLS_ECDHE_PSK_WITH_ARIA_128_CBC_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x71 | ! scope=row | 0xC0,0x71 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDHE_PSK_WITH_ARIA_256_CBC_SHA384 | | style="background-color: white;" | TLS_ECDHE_PSK_WITH_ARIA_256_CBC_SHA384 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x72 | ! scope=row | 0xC0,0x72 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDHE_ECDSA_WITH_CAMELLIA_128_CBC_SHA256 | | style="background-color: white;" | TLS_ECDHE_ECDSA_WITH_CAMELLIA_128_CBC_SHA256 | ||
| style="background-color: white;" | TLS_ECDHE_ECDSA_CAMELLIA_128_CBC_SHA256 | | style="background-color: white;" | TLS_ECDHE_ECDSA_CAMELLIA_128_CBC_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | ECDHE-ECDSA-CAMELLIA128-SHA256 | | style="background-color: white;" | ECDHE-ECDSA-CAMELLIA128-SHA256 | ||
|- | |- | ||
! scope=row | 0xC0,0x73 | ! scope=row | 0xC0,0x73 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDHE_ECDSA_WITH_CAMELLIA_256_CBC_SHA384 | | style="background-color: white;" | TLS_ECDHE_ECDSA_WITH_CAMELLIA_256_CBC_SHA384 | ||
| style="background-color: white;" | TLS_ECDHE_ECDSA_CAMELLIA_256_CBC_SHA384 | | style="background-color: white;" | TLS_ECDHE_ECDSA_CAMELLIA_256_CBC_SHA384 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | ECDHE-ECDSA-CAMELLIA256-SHA384 | | style="background-color: white;" | ECDHE-ECDSA-CAMELLIA256-SHA384 | ||
|- | |- | ||
! scope=row | 0xC0,0x74 | ! scope=row | 0xC0,0x74 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDH_ECDSA_WITH_CAMELLIA_128_CBC_SHA256 | | style="background-color: white;" | TLS_ECDH_ECDSA_WITH_CAMELLIA_128_CBC_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | ECDH-ECDSA-CAMELLIA128-SHA256 | | style="background-color: white;" | ECDH-ECDSA-CAMELLIA128-SHA256 | ||
|- | |- | ||
! scope=row | 0xC0,0x75 | ! scope=row | 0xC0,0x75 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDH_ECDSA_WITH_CAMELLIA_256_CBC_SHA384 | | style="background-color: white;" | TLS_ECDH_ECDSA_WITH_CAMELLIA_256_CBC_SHA384 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | ECDH-ECDSA-CAMELLIA256-SHA384 | | style="background-color: white;" | ECDH-ECDSA-CAMELLIA256-SHA384 | ||
|- | |- | ||
! scope=row | 0xC0,0x76 | ! scope=row | 0xC0,0x76 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDHE_RSA_WITH_CAMELLIA_128_CBC_SHA256 | | style="background-color: white;" | TLS_ECDHE_RSA_WITH_CAMELLIA_128_CBC_SHA256 | ||
| style="background-color: white;" | TLS_ECDHE_RSA_CAMELLIA_128_CBC_SHA256 | | style="background-color: white;" | TLS_ECDHE_RSA_CAMELLIA_128_CBC_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | ECDHE-RSA-CAMELLIA128-SHA256 | | style="background-color: white;" | ECDHE-RSA-CAMELLIA128-SHA256 | ||
|- | |- | ||
! scope=row | 0xC0,0x77 | ! scope=row | 0xC0,0x77 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDHE_RSA_WITH_CAMELLIA_256_CBC_SHA384 | | style="background-color: white;" | TLS_ECDHE_RSA_WITH_CAMELLIA_256_CBC_SHA384 | ||
| style="background-color: white;" | TLS_ECDHE_RSA_CAMELLIA_256_CBC_SHA384 | | style="background-color: white;" | TLS_ECDHE_RSA_CAMELLIA_256_CBC_SHA384 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | ECDHE-RSA-CAMELLIA256-SHA384 | | style="background-color: white;" | ECDHE-RSA-CAMELLIA256-SHA384 | ||
|- | |- | ||
! scope=row | 0xC0,0x78 | ! scope=row | 0xC0,0x78 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDH_RSA_WITH_CAMELLIA_128_CBC_SHA256 | | style="background-color: white;" | TLS_ECDH_RSA_WITH_CAMELLIA_128_CBC_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | ECDH-RSA-CAMELLIA128-SHA256 | | style="background-color: white;" | ECDH-RSA-CAMELLIA128-SHA256 | ||
|- | |- | ||
! scope=row | 0xC0,0x79 | ! scope=row | 0xC0,0x79 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDH_RSA_WITH_CAMELLIA_256_CBC_SHA384 | | style="background-color: white;" | TLS_ECDH_RSA_WITH_CAMELLIA_256_CBC_SHA384 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | ECDH-RSA-CAMELLIA256-SHA384 | | style="background-color: white;" | ECDH-RSA-CAMELLIA256-SHA384 | ||
|- | |- | ||
! scope=row | 0xC0,0x7A | ! scope=row | 0xC0,0x7A | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_RSA_WITH_CAMELLIA_128_GCM_SHA256 | | style="background-color: white;" | TLS_RSA_WITH_CAMELLIA_128_GCM_SHA256 | ||
| style="background-color: white;" | TLS_RSA_CAMELLIA_128_GCM_SHA256 | | style="background-color: white;" | TLS_RSA_CAMELLIA_128_GCM_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x7B | ! scope=row | 0xC0,0x7B | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_RSA_WITH_CAMELLIA_256_GCM_SHA384 | | style="background-color: white;" | TLS_RSA_WITH_CAMELLIA_256_GCM_SHA384 | ||
| style="background-color: white;" | TLS_RSA_CAMELLIA_256_GCM_SHA384 | | style="background-color: white;" | TLS_RSA_CAMELLIA_256_GCM_SHA384 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x7C | ! scope=row | 0xC0,0x7C | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DHE_RSA_WITH_CAMELLIA_128_GCM_SHA256 | | style="background-color: white;" | TLS_DHE_RSA_WITH_CAMELLIA_128_GCM_SHA256 | ||
| style="background-color: white;" | TLS_DHE_RSA_CAMELLIA_128_GCM_SHA256 | | style="background-color: white;" | TLS_DHE_RSA_CAMELLIA_128_GCM_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x7D | ! scope=row | 0xC0,0x7D | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DHE_RSA_WITH_CAMELLIA_256_GCM_SHA384 | | style="background-color: white;" | TLS_DHE_RSA_WITH_CAMELLIA_256_GCM_SHA384 | ||
| style="background-color: white;" | TLS_DHE_RSA_CAMELLIA_256_GCM_SHA384 | | style="background-color: white;" | TLS_DHE_RSA_CAMELLIA_256_GCM_SHA384 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x7E | ! scope=row | 0xC0,0x7E | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DH_RSA_WITH_CAMELLIA_128_GCM_SHA256 | | style="background-color: white;" | TLS_DH_RSA_WITH_CAMELLIA_128_GCM_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x7F | ! scope=row | 0xC0,0x7F | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DH_RSA_WITH_CAMELLIA_256_GCM_SHA384 | | style="background-color: white;" | TLS_DH_RSA_WITH_CAMELLIA_256_GCM_SHA384 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x80 | ! scope=row | 0xC0,0x80 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DHE_DSS_WITH_CAMELLIA_128_GCM_SHA256 | | style="background-color: white;" | TLS_DHE_DSS_WITH_CAMELLIA_128_GCM_SHA256 | ||
| style="background-color: white;" | TLS_DHE_DSS_CAMELLIA_128_GCM_SHA256 | | style="background-color: white;" | TLS_DHE_DSS_CAMELLIA_128_GCM_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x81 | ! scope=row | 0xC0,0x81 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DHE_DSS_WITH_CAMELLIA_256_GCM_SHA384 | | style="background-color: white;" | TLS_DHE_DSS_WITH_CAMELLIA_256_GCM_SHA384 | ||
| style="background-color: white;" | TLS_DHE_DSS_CAMELLIA_256_GCM_SHA384 | | style="background-color: white;" | TLS_DHE_DSS_CAMELLIA_256_GCM_SHA384 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x82 | ! scope=row | 0xC0,0x82 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DH_DSS_WITH_CAMELLIA_128_GCM_SHA256 | | style="background-color: white;" | TLS_DH_DSS_WITH_CAMELLIA_128_GCM_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x83 | ! scope=row | 0xC0,0x83 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DH_DSS_WITH_CAMELLIA_256_GCM_SHA384 | | style="background-color: white;" | TLS_DH_DSS_WITH_CAMELLIA_256_GCM_SHA384 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x84 | ! scope=row | 0xC0,0x84 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DH_anon_WITH_CAMELLIA_128_GCM_SHA256 | | style="background-color: white;" | TLS_DH_anon_WITH_CAMELLIA_128_GCM_SHA256 | ||
| style="background-color: white;" | TLS_DH_ANON_CAMELLIA_128_GCM_SHA256 | | style="background-color: white;" | TLS_DH_ANON_CAMELLIA_128_GCM_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x85 | ! scope=row | 0xC0,0x85 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DH_anon_WITH_CAMELLIA_256_GCM_SHA384 | | style="background-color: white;" | TLS_DH_anon_WITH_CAMELLIA_256_GCM_SHA384 | ||
| style="background-color: white;" | TLS_DH_ANON_CAMELLIA_256_GCM_SHA384 | | style="background-color: white;" | TLS_DH_ANON_CAMELLIA_256_GCM_SHA384 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x86 | ! scope=row | 0xC0,0x86 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDHE_ECDSA_WITH_CAMELLIA_128_GCM_SHA256 | | style="background-color: white;" | TLS_ECDHE_ECDSA_WITH_CAMELLIA_128_GCM_SHA256 | ||
| style="background-color: white;" | TLS_ECDHE_ECDSA_CAMELLIA_128_GCM_SHA256 | | style="background-color: white;" | TLS_ECDHE_ECDSA_CAMELLIA_128_GCM_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x87 | ! scope=row | 0xC0,0x87 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDHE_ECDSA_WITH_CAMELLIA_256_GCM_SHA384 | | style="background-color: white;" | TLS_ECDHE_ECDSA_WITH_CAMELLIA_256_GCM_SHA384 | ||
| style="background-color: white;" | TLS_ECDHE_ECDSA_CAMELLIA_256_GCM_SHA384 | | style="background-color: white;" | TLS_ECDHE_ECDSA_CAMELLIA_256_GCM_SHA384 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x88 | ! scope=row | 0xC0,0x88 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDH_ECDSA_WITH_CAMELLIA_128_GCM_SHA256 | | style="background-color: white;" | TLS_ECDH_ECDSA_WITH_CAMELLIA_128_GCM_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x89 | ! scope=row | 0xC0,0x89 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDH_ECDSA_WITH_CAMELLIA_256_GCM_SHA384 | | style="background-color: white;" | TLS_ECDH_ECDSA_WITH_CAMELLIA_256_GCM_SHA384 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x8A | ! scope=row | 0xC0,0x8A | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDHE_RSA_WITH_CAMELLIA_128_GCM_SHA256 | | style="background-color: white;" | TLS_ECDHE_RSA_WITH_CAMELLIA_128_GCM_SHA256 | ||
| style="background-color: white;" | TLS_ECDHE_RSA_CAMELLIA_128_GCM_SHA256 | | style="background-color: white;" | TLS_ECDHE_RSA_CAMELLIA_128_GCM_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x8B | ! scope=row | 0xC0,0x8B | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDHE_RSA_WITH_CAMELLIA_256_GCM_SHA384 | | style="background-color: white;" | TLS_ECDHE_RSA_WITH_CAMELLIA_256_GCM_SHA384 | ||
| style="background-color: white;" | TLS_ECDHE_RSA_CAMELLIA_256_GCM_SHA384 | | style="background-color: white;" | TLS_ECDHE_RSA_CAMELLIA_256_GCM_SHA384 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x8C | ! scope=row | 0xC0,0x8C | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDH_RSA_WITH_CAMELLIA_128_GCM_SHA256 | | style="background-color: white;" | TLS_ECDH_RSA_WITH_CAMELLIA_128_GCM_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x8D | ! scope=row | 0xC0,0x8D | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDH_RSA_WITH_CAMELLIA_256_GCM_SHA384 | | style="background-color: white;" | TLS_ECDH_RSA_WITH_CAMELLIA_256_GCM_SHA384 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x8E | ! scope=row | 0xC0,0x8E | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_PSK_WITH_CAMELLIA_128_GCM_SHA256 | | style="background-color: white;" | TLS_PSK_WITH_CAMELLIA_128_GCM_SHA256 | ||
| style="background-color: white;" | TLS_PSK_CAMELLIA_128_GCM_SHA256 | | style="background-color: white;" | TLS_PSK_CAMELLIA_128_GCM_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x8F | ! scope=row | 0xC0,0x8F | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_PSK_WITH_CAMELLIA_256_GCM_SHA384 | | style="background-color: white;" | TLS_PSK_WITH_CAMELLIA_256_GCM_SHA384 | ||
| style="background-color: white;" | TLS_PSK_CAMELLIA_256_GCM_SHA384 | | style="background-color: white;" | TLS_PSK_CAMELLIA_256_GCM_SHA384 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x90 | ! scope=row | 0xC0,0x90 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DHE_PSK_WITH_CAMELLIA_128_GCM_SHA256 | | style="background-color: white;" | TLS_DHE_PSK_WITH_CAMELLIA_128_GCM_SHA256 | ||
| style="background-color: white;" | TLS_DHE_PSK_CAMELLIA_128_GCM_SHA256 | | style="background-color: white;" | TLS_DHE_PSK_CAMELLIA_128_GCM_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x91 | ! scope=row | 0xC0,0x91 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DHE_PSK_WITH_CAMELLIA_256_GCM_SHA384 | | style="background-color: white;" | TLS_DHE_PSK_WITH_CAMELLIA_256_GCM_SHA384 | ||
| style="background-color: white;" | TLS_DHE_PSK_CAMELLIA_256_GCM_SHA384 | | style="background-color: white;" | TLS_DHE_PSK_CAMELLIA_256_GCM_SHA384 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x92 | ! scope=row | 0xC0,0x92 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_RSA_PSK_WITH_CAMELLIA_128_GCM_SHA256 | | style="background-color: white;" | TLS_RSA_PSK_WITH_CAMELLIA_128_GCM_SHA256 | ||
| style="background-color: white;" | TLS_RSA_PSK_CAMELLIA_128_GCM_SHA256 | | style="background-color: white;" | TLS_RSA_PSK_CAMELLIA_128_GCM_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x93 | ! scope=row | 0xC0,0x93 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_RSA_PSK_WITH_CAMELLIA_256_GCM_SHA384 | | style="background-color: white;" | TLS_RSA_PSK_WITH_CAMELLIA_256_GCM_SHA384 | ||
| style="background-color: white;" | TLS_RSA_PSK_CAMELLIA_256_GCM_SHA384 | | style="background-color: white;" | TLS_RSA_PSK_CAMELLIA_256_GCM_SHA384 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
|- | |- | ||
! scope=row | 0xC0,0x94 | ! scope=row | 0xC0,0x94 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_PSK_WITH_CAMELLIA_128_CBC_SHA256 | | style="background-color: white;" | TLS_PSK_WITH_CAMELLIA_128_CBC_SHA256 | ||
| style="background-color: white;" | TLS_PSK_CAMELLIA_128_CBC_SHA256 | | style="background-color: white;" | TLS_PSK_CAMELLIA_128_CBC_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | PSK-CAMELLIA128-SHA256 | | style="background-color: white;" | PSK-CAMELLIA128-SHA256 | ||
|- | |- | ||
! scope=row | 0xC0,0x95 | ! scope=row | 0xC0,0x95 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_PSK_WITH_CAMELLIA_256_CBC_SHA384 | | style="background-color: white;" | TLS_PSK_WITH_CAMELLIA_256_CBC_SHA384 | ||
| style="background-color: white;" | TLS_PSK_CAMELLIA_256_CBC_SHA384 | | style="background-color: white;" | TLS_PSK_CAMELLIA_256_CBC_SHA384 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | PSK-CAMELLIA256-SHA384 | | style="background-color: white;" | PSK-CAMELLIA256-SHA384 | ||
|- | |- | ||
! scope=row | 0xC0,0x96 | ! scope=row | 0xC0,0x96 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DHE_PSK_WITH_CAMELLIA_128_CBC_SHA256 | | style="background-color: white;" | TLS_DHE_PSK_WITH_CAMELLIA_128_CBC_SHA256 | ||
| style="background-color: white;" | TLS_DHE_PSK_CAMELLIA_128_CBC_SHA256 | | style="background-color: white;" | TLS_DHE_PSK_CAMELLIA_128_CBC_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | DHE-PSK-CAMELLIA128-SHA256 | | style="background-color: white;" | DHE-PSK-CAMELLIA128-SHA256 | ||
|- | |- | ||
! scope=row | 0xC0,0x97 | ! scope=row | 0xC0,0x97 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DHE_PSK_WITH_CAMELLIA_256_CBC_SHA384 | | style="background-color: white;" | TLS_DHE_PSK_WITH_CAMELLIA_256_CBC_SHA384 | ||
| style="background-color: white;" | TLS_DHE_PSK_CAMELLIA_256_CBC_SHA384 | | style="background-color: white;" | TLS_DHE_PSK_CAMELLIA_256_CBC_SHA384 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | DHE-PSK-CAMELLIA256-SHA384 | | style="background-color: white;" | DHE-PSK-CAMELLIA256-SHA384 | ||
|- | |- | ||
! scope=row | 0xC0,0x98 | ! scope=row | 0xC0,0x98 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_RSA_PSK_WITH_CAMELLIA_128_CBC_SHA256 | | style="background-color: white;" | TLS_RSA_PSK_WITH_CAMELLIA_128_CBC_SHA256 | ||
| style="background-color: white;" | TLS_RSA_PSK_CAMELLIA_128_CBC_SHA256 | | style="background-color: white;" | TLS_RSA_PSK_CAMELLIA_128_CBC_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | RSA-PSK-CAMELLIA128-SHA256 | | style="background-color: white;" | RSA-PSK-CAMELLIA128-SHA256 | ||
|- | |- | ||
! scope=row | 0xC0,0x99 | ! scope=row | 0xC0,0x99 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_RSA_PSK_WITH_CAMELLIA_256_CBC_SHA384 | | style="background-color: white;" | TLS_RSA_PSK_WITH_CAMELLIA_256_CBC_SHA384 | ||
| style="background-color: white;" | TLS_RSA_PSK_CAMELLIA_256_CBC_SHA384 | | style="background-color: white;" | TLS_RSA_PSK_CAMELLIA_256_CBC_SHA384 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | RSA-PSK-CAMELLIA256-SHA384 | | style="background-color: white;" | RSA-PSK-CAMELLIA256-SHA384 | ||
|- | |- | ||
! scope=row | 0xC0,0x9A | ! scope=row | 0xC0,0x9A | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDHE_PSK_WITH_CAMELLIA_128_CBC_SHA256 | | style="background-color: white;" | TLS_ECDHE_PSK_WITH_CAMELLIA_128_CBC_SHA256 | ||
| style="background-color: white;" | TLS_ECDHE_PSK_CAMELLIA_128_CBC_SHA256 | | style="background-color: white;" | TLS_ECDHE_PSK_CAMELLIA_128_CBC_SHA256 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | ECDHE-PSK-CAMELLIA128-SHA256 | | style="background-color: white;" | ECDHE-PSK-CAMELLIA128-SHA256 | ||
|- | |- | ||
! scope=row | 0xC0,0x9B | ! scope=row | 0xC0,0x9B | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDHE_PSK_WITH_CAMELLIA_256_CBC_SHA384 | | style="background-color: white;" | TLS_ECDHE_PSK_WITH_CAMELLIA_256_CBC_SHA384 | ||
| style="background-color: white;" | TLS_ECDHE_PSK_CAMELLIA_256_CBC_SHA384 | | style="background-color: white;" | TLS_ECDHE_PSK_CAMELLIA_256_CBC_SHA384 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | ECDHE-PSK-CAMELLIA256-SHA384 | | style="background-color: white;" | ECDHE-PSK-CAMELLIA256-SHA384 | ||
|- | |- | ||
! scope=row | 0xC0,0x9C | ! scope=row | 0xC0,0x9C | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_RSA_WITH_AES_128_CCM | | style="background-color: white;" | TLS_RSA_WITH_AES_128_CCM | ||
| style="background-color: white;" | TLS_RSA_AES_128_CCM | | style="background-color: white;" | TLS_RSA_AES_128_CCM | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | AES128-CCM | | style="background-color: white;" | AES128-CCM | ||
|- | |- | ||
! scope=row | 0xC0,0x9D | ! scope=row | 0xC0,0x9D | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_RSA_WITH_AES_256_CCM | | style="background-color: white;" | TLS_RSA_WITH_AES_256_CCM | ||
| style="background-color: white;" | TLS_RSA_AES_256_CCM | | style="background-color: white;" | TLS_RSA_AES_256_CCM | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | AES256-CCM | | style="background-color: white;" | AES256-CCM | ||
|- | |- | ||
! scope=row | 0xC0,0x9E | ! scope=row | 0xC0,0x9E | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DHE_RSA_WITH_AES_128_CCM | | style="background-color: white;" | TLS_DHE_RSA_WITH_AES_128_CCM | ||
| style="background-color: white;" | TLS_DHE_RSA_AES_128_CCM | | style="background-color: white;" | TLS_DHE_RSA_AES_128_CCM | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | DHE-RSA-AES128-CCM | | style="background-color: white;" | DHE-RSA-AES128-CCM | ||
|- | |- | ||
! scope=row | 0xC0,0x9F | ! scope=row | 0xC0,0x9F | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DHE_RSA_WITH_AES_256_CCM | | style="background-color: white;" | TLS_DHE_RSA_WITH_AES_256_CCM | ||
| style="background-color: white;" | TLS_DHE_RSA_AES_256_CCM | | style="background-color: white;" | TLS_DHE_RSA_AES_256_CCM | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | DHE-RSA-AES256-CCM | | style="background-color: white;" | DHE-RSA-AES256-CCM | ||
|- | |- | ||
! scope=row | 0xC0,0xA0 | ! scope=row | 0xC0,0xA0 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_RSA_WITH_AES_128_CCM_8 | | style="background-color: white;" | TLS_RSA_WITH_AES_128_CCM_8 | ||
| style="background-color: white;" | TLS_RSA_AES_128_CCM_8 | | style="background-color: white;" | TLS_RSA_AES_128_CCM_8 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | AES128-CCM8 | | style="background-color: white;" | AES128-CCM8 | ||
|- | |- | ||
! scope=row | 0xC0,0xA1 | ! scope=row | 0xC0,0xA1 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_RSA_WITH_AES_256_CCM_8 | | style="background-color: white;" | TLS_RSA_WITH_AES_256_CCM_8 | ||
| style="background-color: white;" | TLS_RSA_AES_256_CCM_8 | | style="background-color: white;" | TLS_RSA_AES_256_CCM_8 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | AES256-CCM8 | | style="background-color: white;" | AES256-CCM8 | ||
|- | |- | ||
! scope=row | 0xC0,0xA2 | ! scope=row | 0xC0,0xA2 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DHE_RSA_WITH_AES_128_CCM_8 | | style="background-color: white;" | TLS_DHE_RSA_WITH_AES_128_CCM_8 | ||
| style="background-color: white;" | TLS_DHE_RSA_AES_128_CCM_8 | | style="background-color: white;" | TLS_DHE_RSA_AES_128_CCM_8 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | DHE-RSA-AES128-CCM8 | | style="background-color: white;" | DHE-RSA-AES128-CCM8 | ||
|- | |- | ||
! scope=row | 0xC0,0xA3 | ! scope=row | 0xC0,0xA3 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DHE_RSA_WITH_AES_256_CCM_8 | | style="background-color: white;" | TLS_DHE_RSA_WITH_AES_256_CCM_8 | ||
| style="background-color: white;" | TLS_DHE_RSA_AES_256_CCM_8 | | style="background-color: white;" | TLS_DHE_RSA_AES_256_CCM_8 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | DHE-RSA-AES256-CCM8 | | style="background-color: white;" | DHE-RSA-AES256-CCM8 | ||
|- | |- | ||
! scope=row | 0xC0,0xA4 | ! scope=row | 0xC0,0xA4 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_PSK_WITH_AES_128_CCM | | style="background-color: white;" | TLS_PSK_WITH_AES_128_CCM | ||
| style="background-color: white;" | TLS_PSK_AES_128_CCM | | style="background-color: white;" | TLS_PSK_AES_128_CCM | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | PSK-AES128-CCM | | style="background-color: white;" | PSK-AES128-CCM | ||
|- | |- | ||
! scope=row | 0xC0,0xA5 | ! scope=row | 0xC0,0xA5 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_PSK_WITH_AES_256_CCM | | style="background-color: white;" | TLS_PSK_WITH_AES_256_CCM | ||
| style="background-color: white;" | TLS_PSK_AES_256_CCM | | style="background-color: white;" | TLS_PSK_AES_256_CCM | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | PSK-AES256-CCM | | style="background-color: white;" | PSK-AES256-CCM | ||
|- | |- | ||
! scope=row | 0xC0,0xA6 | ! scope=row | 0xC0,0xA6 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DHE_PSK_WITH_AES_128_CCM | | style="background-color: white;" | TLS_DHE_PSK_WITH_AES_128_CCM | ||
| style="background-color: white;" | TLS_DHE_PSK_AES_128_CCM | | style="background-color: white;" | TLS_DHE_PSK_AES_128_CCM | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | DHE-PSK-AES128-CCM | | style="background-color: white;" | DHE-PSK-AES128-CCM | ||
|- | |- | ||
! scope=row | 0xC0,0xA7 | ! scope=row | 0xC0,0xA7 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_DHE_PSK_WITH_AES_256_CCM | | style="background-color: white;" | TLS_DHE_PSK_WITH_AES_256_CCM | ||
| style="background-color: white;" | TLS_DHE_PSK_AES_256_CCM | | style="background-color: white;" | TLS_DHE_PSK_AES_256_CCM | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | DHE-PSK-AES256-CCM | | style="background-color: white;" | DHE-PSK-AES256-CCM | ||
|- | |- | ||
! scope=row | 0xC0,0xA8 | ! scope=row | 0xC0,0xA8 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_PSK_WITH_AES_128_CCM_8 | | style="background-color: white;" | TLS_PSK_WITH_AES_128_CCM_8 | ||
| style="background-color: white;" | TLS_PSK_AES_128_CCM_8 | | style="background-color: white;" | TLS_PSK_AES_128_CCM_8 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | PSK-AES128-CCM8 | | style="background-color: white;" | PSK-AES128-CCM8 | ||
|- | |- | ||
! scope=row | 0xC0,0xA9 | ! scope=row | 0xC0,0xA9 | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_PSK_WITH_AES_256_CCM_8 | | style="background-color: white;" | TLS_PSK_WITH_AES_256_CCM_8 | ||
| style="background-color: white;" | TLS_PSK_AES_256_CCM_8 | | style="background-color: white;" | TLS_PSK_AES_256_CCM_8 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | PSK-AES256-CCM8 | | style="background-color: white;" | PSK-AES256-CCM8 | ||
|- | |- | ||
! scope=row | 0xC0,0xAA | ! scope=row | 0xC0,0xAA | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_PSK_DHE_WITH_AES_128_CCM_8 | | style="background-color: white;" | TLS_PSK_DHE_WITH_AES_128_CCM_8 | ||
| style="background-color: white;" | TLS_DHE_PSK_AES_128_CCM_8 | | style="background-color: white;" | TLS_DHE_PSK_AES_128_CCM_8 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | DHE-PSK-AES128-CCM8 | | style="background-color: white;" | DHE-PSK-AES128-CCM8 | ||
|- | |- | ||
! scope=row | 0xC0,0xAB | ! scope=row | 0xC0,0xAB | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_PSK_DHE_WITH_AES_256_CCM_8 | | style="background-color: white;" | TLS_PSK_DHE_WITH_AES_256_CCM_8 | ||
| style="background-color: white;" | TLS_DHE_PSK_AES_256_CCM_8 | | style="background-color: white;" | TLS_DHE_PSK_AES_256_CCM_8 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | DHE-PSK-AES256-CCM8 | | style="background-color: white;" | DHE-PSK-AES256-CCM8 | ||
|- | |- | ||
! scope=row | 0xC0,0xAC | ! scope=row | 0xC0,0xAC | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDHE_ECDSA_WITH_AES_128_CCM | | style="background-color: white;" | TLS_ECDHE_ECDSA_WITH_AES_128_CCM | ||
| style="background-color: white;" | TLS_ECDHE_ECDSA_AES_128_CCM | | style="background-color: white;" | TLS_ECDHE_ECDSA_AES_128_CCM | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | ECDHE-ECDSA-AES128-CCM | | style="background-color: white;" | ECDHE-ECDSA-AES128-CCM | ||
|- | |- | ||
! scope=row | 0xC0,0xAD | ! scope=row | 0xC0,0xAD | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDHE_ECDSA_WITH_AES_256_CCM | | style="background-color: white;" | TLS_ECDHE_ECDSA_WITH_AES_256_CCM | ||
| style="background-color: white;" | TLS_ECDHE_ECDSA_AES_256_CCM | | style="background-color: white;" | TLS_ECDHE_ECDSA_AES_256_CCM | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | ECDHE-ECDSA-AES256-CCM | | style="background-color: white;" | ECDHE-ECDSA-AES256-CCM | ||
|- | |- | ||
! scope=row | 0xC0,0xAE | ! scope=row | 0xC0,0xAE | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDHE_ECDSA_WITH_AES_128_CCM_8 | | style="background-color: white;" | TLS_ECDHE_ECDSA_WITH_AES_128_CCM_8 | ||
| style="background-color: white;" | TLS_ECDHE_ECDSA_AES_128_CCM_8 | | style="background-color: white;" | TLS_ECDHE_ECDSA_AES_128_CCM_8 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | ECDHE-ECDSA-AES128-CCM8 | | style="background-color: white;" | ECDHE-ECDSA-AES128-CCM8 | ||
|- | |- | ||
! scope=row | 0xC0,0xAF | ! scope=row | 0xC0,0xAF | ||
| style="background-color: white;" data-sort-value="1000" | | | style="background-color: white;" data-sort-value="1000" | | ||
| style="background-color: white;" | TLS_ECDHE_ECDSA_WITH_AES_256_CCM_8 | | style="background-color: white;" | TLS_ECDHE_ECDSA_WITH_AES_256_CCM_8 | ||
| style="background-color: white;" | TLS_ECDHE_ECDSA_AES_256_CCM_8 | | style="background-color: white;" | TLS_ECDHE_ECDSA_AES_256_CCM_8 | ||
| style="background-color: white;" | | | style="background-color: white;" | | ||
| style="background-color: white;" | ECDHE-ECDSA-AES256-CCM8 | | style="background-color: white;" | ECDHE-ECDSA-AES256-CCM8 | ||
|} | |} | ||
Line 3,385: | Line 2,804: | ||
! Changes | ! Changes | ||
|- | |- | ||
| style="text-align: center;" | | | style="text-align: center;" | 4 | ||
| style="text-align: center;" | | | style="text-align: center;" | Julien Vehent | ||
| | | Recommend ECDSA in modern level, remove DSS ciphers, publish configurations as JSON | ||
|- | |- | ||
| style="text-align: center;" | 3.8 | | style="text-align: center;" | 3.8 | ||
| style="text-align: center;" | | | style="text-align: center;" | Julien Vehent | ||
| redo cipher names chart ( | | redo cipher names chart (April King), move version chart (April King), update Intermediate cipher suite (ulfr) | ||
|- | |- | ||
| style="text-align: center;" | 3.7 | | style="text-align: center;" | 3.7 | ||
| style="text-align: center;" | | | style="text-align: center;" | Julien Vehent | ||
| cleanup version table ( | | cleanup version table (April King), add F5 conf samples (warburtron), add notes about DHE (rgacogne) | ||
|- | |- | ||
| style="text-align: center;" | 3.6 | | style="text-align: center;" | 3.6 | ||
| style="text-align: center;" | | | style="text-align: center;" | Julien Vehent | ||
| bump intermediate DHE to 2048, add note about java compatibility | | bump intermediate DHE to 2048, add note about java compatibility | ||
|- | |- | ||
Line 3,406: | Line 2,825: | ||
|- | |- | ||
| style="text-align: center;" | 3.4 | | style="text-align: center;" | 3.4 | ||
| style="text-align: center;" | | | style="text-align: center;" | Julien Vehent | ||
| added note about session resumption, HSTS, and HPKP | | added note about session resumption, HSTS, and HPKP | ||
|- | |- | ||
| style="text-align: center;" | 3.3 | | style="text-align: center;" | 3.3 | ||
| style="text-align: center;" | | | style="text-align: center;" | Julien Vehent | ||
| fix SHA256 prio, add POODLE details, update various templates | | fix SHA256 prio, add POODLE details, update various templates | ||
|- | |- | ||
| style="text-align: center;" | 3.2 | | style="text-align: center;" | 3.2 | ||
| style="text-align: center;" | | | style="text-align: center;" | Julien Vehent | ||
| Added intermediate compatibility mode, renamed other modes | | Added intermediate compatibility mode, renamed other modes | ||
|- | |- | ||
| style="text-align: center;" | 3.1 | | style="text-align: center;" | 3.1 | ||
| style="text-align: center;" | | | style="text-align: center;" | Julien Vehent | ||
| Added non-backward compatible ciphersuite | | Added non-backward compatible ciphersuite | ||
|- | |- | ||
| style="text-align: center;" | 3 | | style="text-align: center;" | 3 | ||
| style="text-align: center;" | | | style="text-align: center;" | Julien Vehent | ||
| Remove RC4 for 3DES, fix ordering in openssl 0.9.8 ([https://bugzilla.mozilla.org/show_bug.cgi?id=1024430 1024430]), various minor updates | | Remove RC4 for 3DES, fix ordering in openssl 0.9.8 ([https://bugzilla.mozilla.org/show_bug.cgi?id=1024430 1024430]), various minor updates | ||
|- | |- | ||
| style="text-align: center;" | 2.5.1 | | style="text-align: center;" | 2.5.1 | ||
| style="text-align: center;" | | | style="text-align: center;" | Julien Vehent | ||
| Revisit ELB capabilities | | Revisit ELB capabilities | ||
|- | |- | ||
| style="text-align: center;" | 2.5 | | style="text-align: center;" | 2.5 | ||
| style="text-align: center;" | | | style="text-align: center;" | Julien Vehent | ||
| Update ZLB information for OCSP Stapling and ciphersuite | | Update ZLB information for OCSP Stapling and ciphersuite | ||
|- | |- | ||
| style="text-align: center;" | 2.4 | | style="text-align: center;" | 2.4 | ||
| style="text-align: center;" | | | style="text-align: center;" | Julien Vehent | ||
| Moved a couple of aes128 above aes256 in the ciphersuite | | Moved a couple of aes128 above aes256 in the ciphersuite | ||
|- | |- | ||
| style="text-align: center;" | 2.3 | | style="text-align: center;" | 2.3 | ||
| style="text-align: center;" | | | style="text-align: center;" | Julien Vehent | ||
| Precisions on IE 7/8 AES support (thanks to Dobin Rutishauser) | | Precisions on IE 7/8 AES support (thanks to Dobin Rutishauser) | ||
|- | |- | ||
| style="text-align: center;" | 2.2 | | style="text-align: center;" | 2.2 | ||
| style="text-align: center;" | | | style="text-align: center;" | Julien Vehent | ||
| Added IANA/OpenSSL/GnuTLS correspondence table and conversion tool | | Added IANA/OpenSSL/GnuTLS correspondence table and conversion tool | ||
|- | |- | ||
| style="text-align: center;" | 2.1 | | style="text-align: center;" | 2.1 | ||
| style="text-align: center;" | | | style="text-align: center;" | Julien Vehent | ||
| RC4 vs 3DES discussion. r=joes r=tinfoil | | RC4 vs 3DES discussion. r=joes r=tinfoil | ||
|- | |- | ||
| style="text-align: center;" | 2.0 | | style="text-align: center;" | 2.0 | ||
| style="text-align: center;" | | | style="text-align: center;" | Julien Vehent, kang | ||
| Public release. | | Public release. | ||
|- | |- | ||
| style="text-align: center;" | 1.5 | | style="text-align: center;" | 1.5 | ||
| style="text-align: center;" | | | style="text-align: center;" | Julien Vehent, kang | ||
| added details for PFS DHE handshake, added nginx configuration details; added Apache recommended conf | | added details for PFS DHE handshake, added nginx configuration details; added Apache recommended conf | ||
|- | |- | ||
| style="text-align: center;" | 1.4 | | style="text-align: center;" | 1.4 | ||
| style="text-align: center;" | | | style="text-align: center;" | Julien Vehent | ||
| revised ciphersuite. Prefer AES before RC4. Prefer 128 before 256. Prefer DHE before non-DHE. | | revised ciphersuite. Prefer AES before RC4. Prefer 128 before 256. Prefer DHE before non-DHE. | ||
|- | |- | ||
| style="text-align: center;" | 1.3 | | style="text-align: center;" | 1.3 | ||
| style="text-align: center;" | | | style="text-align: center;" | Julien Vehent | ||
| added netscaler example conf | | added netscaler example conf | ||
|- | |- | ||
| style="text-align: center;" | 1.2 | | style="text-align: center;" | 1.2 | ||
| style="text-align: center;" | | | style="text-align: center;" | Julien Vehent | ||
| ciphersuite update, bump DHE-AESGCM above ECDH-RC4 | | ciphersuite update, bump DHE-AESGCM above ECDH-RC4 | ||
|- | |- | ||
| style="text-align: center;" | 1.1 | | style="text-align: center;" | 1.1 | ||
| style="text-align: center;" | | | style="text-align: center;" | Julien Vehent, kang | ||
| integrated review comments from Infra; SPDY information | | integrated review comments from Infra; SPDY information | ||
|- | |- | ||
| style="text-align: center;" | 1.0 | | style="text-align: center;" | 1.0 | ||
| style="text-align: center;" | | | style="text-align: center;" | Julien Vehent | ||
| creation | | creation | ||
|- | |- |