diff --git a/CHANGES b/CHANGES index 905d0a15a8..ff3818f408 100644 --- a/CHANGES +++ b/CHANGES @@ -1,4 +1,18 @@ +2.3-beta-14 | 2014-06-05 14:43:33 -0700 + + * Add new TLS extension type numbers from IANA (Bernhard Amann) + + * Switch to double hashing for Bloomfilters for better performance. + (Matthias Vallentin) + + * Bugfix to use full digest length instead of just one byte for + Bloomfilter's universal hash function. Addresses BIT-1140. + (Matthias Vallentin) + + * Make buffer for X509 certificate subjects larger. Addresses + BIT-1195 (Bernhard Amann) + 2.3-beta-5 | 2014-05-29 15:34:42 -0500 * Fix misc/load-balancing.bro's reference to diff --git a/VERSION b/VERSION index 3f0af0e6cb..91ad41fcc2 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.3-beta-5 +2.3-beta-14 diff --git a/scripts/base/protocols/ssl/consts.bro b/scripts/base/protocols/ssl/consts.bro index 6b40fe8510..969527ed69 100644 --- a/scripts/base/protocols/ssl/consts.bro +++ b/scripts/base/protocols/ssl/consts.bro @@ -94,6 +94,10 @@ export { [16] = "application_layer_protocol_negotiation", [17] = "status_request_v2", [18] = "signed_certificate_timestamp", + [19] = "client_certificate_type", + [20] = "server_certificate_type", + [21] = "padding", # temporary till 2015-03-12 + [22] = "encrypt_then_mac", # temporary till 2015-06-05 [35] = "SessionTicket TLS", [40] = "extended_random", [13172] = "next_protocol_negotiation",