diff options
author | lloyd <[email protected]> | 2011-12-30 15:37:36 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2011-12-30 15:37:36 +0000 |
commit | fc626d62f464a7dee5e62134781f5a6ccdfafc72 (patch) | |
tree | 6658020f1836b2faacffabca03897ca871b2880d /src/tls/tls_magic.h | |
parent | ca850112360e48a3a140f08fa07f02806d61393b (diff) |
Many renegotiation fixes. Add support for the secure renegotiation
extension (client side only at the moment). Add an interface that
allows applications to request renegotiation.
Diffstat (limited to 'src/tls/tls_magic.h')
-rw-r--r-- | src/tls/tls_magic.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/tls/tls_magic.h b/src/tls/tls_magic.h index 535319d41..e20788ea3 100644 --- a/src/tls/tls_magic.h +++ b/src/tls/tls_magic.h @@ -148,7 +148,10 @@ enum Ciphersuite_Code { TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA = 0xC013, TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA = 0xC014, TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256 = 0xC027, - TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384 = 0xC028 + TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384 = 0xC028, + + /* signalling values that cannot be negotiated */ + TLS_EMPTY_RENEGOTIATION_INFO_SCSV = 0x00FF }; /* |