mirror of
https://github.com/adulau/ssldump.git
synced 2024-11-07 12:06:27 +00:00
Add fallback signaling cipher suite
This commit is contained in:
parent
17a84809c9
commit
b1b339ff0f
2 changed files with 5 additions and 0 deletions
|
@ -655,6 +655,7 @@ ClientKeyExchange(16)
|
|||
CipherSuite TLS_ECDHE_PSK_WITH_CHACHA20_POLY1305_SHA256 = { 0xCC,0xAC };
|
||||
CipherSuite TLS_DHE_PSK_WITH_CHACHA20_POLY1305_SHA256 = { 0xCC,0xAD };
|
||||
CipherSuite TLS_RSA_PSK_WITH_CHACHA20_POLY1305_SHA256 = { 0xCC,0xAE };
|
||||
CipherSuite TLS_FALLBACK_SCSV = { 0x56,0x00 };
|
||||
// DRAFT-IETF-TLS-ECC
|
||||
CipherSuite TLS_ECDH_ECDSA_WITH_NULL_SHA = { 0x00,0x47 };
|
||||
CipherSuite TLS_ECDH_ECDSA_WITH_RC4_128_SHA = { 0x00,0x48 };
|
||||
|
|
|
@ -1083,6 +1083,10 @@ decoder cipher_suite_decoder[]={
|
|||
255,
|
||||
"TLS_EMPTY_RENEGOTIATION_INFO_SCSV",
|
||||
0 },
|
||||
{
|
||||
22016,
|
||||
"TLS_FALLBACK_SCSV",
|
||||
0 },
|
||||
{
|
||||
49153,
|
||||
"TLS_ECDH_ECDSA_WITH_NULL_SHA",
|
||||
|
|
Loading…
Reference in a new issue