mirror of
https://github.com/zeek/zeek.git
synced 2025-10-16 05:28:20 +00:00
Merge remote-tracking branch 'origin/fastpath'
* origin/fastpath: new TLS constants from https://tools.ietf.org/html/draft-bmoeller-tls-downgrade-scsv-01 Revert "Correct return type of topk_get_top, addresses BIT-1144" Correct return type of topk_get_top, addresses BIT-1144
This commit is contained in:
commit
58eb9bbf28
3 changed files with 11 additions and 1 deletions
6
CHANGES
6
CHANGES
|
@ -1,4 +1,10 @@
|
||||||
|
|
||||||
|
2.2-184 | 2014-02-24 07:28:18 -0800
|
||||||
|
|
||||||
|
* New TLS constants from
|
||||||
|
https://tools.ietf.org/html/draft-bmoeller-tls-downgrade-scsv-01.
|
||||||
|
(Bernhard Amann)
|
||||||
|
|
||||||
2.2-180 | 2014-02-20 17:29:14 -0800
|
2.2-180 | 2014-02-20 17:29:14 -0800
|
||||||
|
|
||||||
* New SSL alert descriptions from
|
* New SSL alert descriptions from
|
||||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
||||||
2.2-180
|
2.2-184
|
||||||
|
|
|
@ -47,6 +47,7 @@ export {
|
||||||
[70] = "protocol_version",
|
[70] = "protocol_version",
|
||||||
[71] = "insufficient_security",
|
[71] = "insufficient_security",
|
||||||
[80] = "internal_error",
|
[80] = "internal_error",
|
||||||
|
[86] = "inappropriate_fallback",
|
||||||
[90] = "user_canceled",
|
[90] = "user_canceled",
|
||||||
[100] = "no_renegotiation",
|
[100] = "no_renegotiation",
|
||||||
[110] = "unsupported_extension",
|
[110] = "unsupported_extension",
|
||||||
|
@ -264,6 +265,8 @@ export {
|
||||||
const TLS_DHE_DSS_WITH_CAMELLIA_256_CBC_SHA256 = 0x00C3;
|
const TLS_DHE_DSS_WITH_CAMELLIA_256_CBC_SHA256 = 0x00C3;
|
||||||
const TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA256 = 0x00C4;
|
const TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA256 = 0x00C4;
|
||||||
const TLS_DH_ANON_WITH_CAMELLIA_256_CBC_SHA256 = 0x00C5;
|
const TLS_DH_ANON_WITH_CAMELLIA_256_CBC_SHA256 = 0x00C5;
|
||||||
|
# draft-bmoeller-tls-downgrade-scsv-01
|
||||||
|
const TLS_FALLBACK_SCSV = 0x5600;
|
||||||
# RFC 4492
|
# RFC 4492
|
||||||
const TLS_ECDH_ECDSA_WITH_NULL_SHA = 0xC001;
|
const TLS_ECDH_ECDSA_WITH_NULL_SHA = 0xC001;
|
||||||
const TLS_ECDH_ECDSA_WITH_RC4_128_SHA = 0xC002;
|
const TLS_ECDH_ECDSA_WITH_RC4_128_SHA = 0xC002;
|
||||||
|
@ -630,6 +633,7 @@ export {
|
||||||
[TLS_DHE_DSS_WITH_CAMELLIA_256_CBC_SHA256] = "TLS_DHE_DSS_WITH_CAMELLIA_256_CBC_SHA256",
|
[TLS_DHE_DSS_WITH_CAMELLIA_256_CBC_SHA256] = "TLS_DHE_DSS_WITH_CAMELLIA_256_CBC_SHA256",
|
||||||
[TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA256] = "TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA256",
|
[TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA256] = "TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA256",
|
||||||
[TLS_DH_ANON_WITH_CAMELLIA_256_CBC_SHA256] = "TLS_DH_ANON_WITH_CAMELLIA_256_CBC_SHA256",
|
[TLS_DH_ANON_WITH_CAMELLIA_256_CBC_SHA256] = "TLS_DH_ANON_WITH_CAMELLIA_256_CBC_SHA256",
|
||||||
|
[TLS_FALLBACK_SCSV] = "TLS_FALLBACK_SCSV",
|
||||||
[TLS_ECDH_ECDSA_WITH_NULL_SHA] = "TLS_ECDH_ECDSA_WITH_NULL_SHA",
|
[TLS_ECDH_ECDSA_WITH_NULL_SHA] = "TLS_ECDH_ECDSA_WITH_NULL_SHA",
|
||||||
[TLS_ECDH_ECDSA_WITH_RC4_128_SHA] = "TLS_ECDH_ECDSA_WITH_RC4_128_SHA",
|
[TLS_ECDH_ECDSA_WITH_RC4_128_SHA] = "TLS_ECDH_ECDSA_WITH_RC4_128_SHA",
|
||||||
[TLS_ECDH_ECDSA_WITH_3DES_EDE_CBC_SHA] = "TLS_ECDH_ECDSA_WITH_3DES_EDE_CBC_SHA",
|
[TLS_ECDH_ECDSA_WITH_3DES_EDE_CBC_SHA] = "TLS_ECDH_ECDSA_WITH_3DES_EDE_CBC_SHA",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue