summaryrefslogtreecommitdiffstats
path: root/crypto/openssl/ssl/ssl_locl.h
diff options
context:
space:
mode:
authordelphij <delphij@FreeBSD.org>2014-01-07 19:58:45 +0000
committerdelphij <delphij@FreeBSD.org>2014-01-07 19:58:45 +0000
commit106d50295b278845242fffccba73ac39f8cc971f (patch)
tree0804b5ed749774647623171c59cc54c7c96f1e41 /crypto/openssl/ssl/ssl_locl.h
parent207475f6fd4dbccf6c2c65b978e694628a858ae8 (diff)
downloadFreeBSD-src-106d50295b278845242fffccba73ac39f8cc971f.zip
FreeBSD-src-106d50295b278845242fffccba73ac39f8cc971f.tar.gz
MFV r260399:
Apply vendor commits: 197e0ea Fix for TLS record tampering bug. (CVE-2013-4353). 3462896 For DTLS we might need to retransmit messages from the previous session so keep a copy of write context in DTLS retransmission buffers instead of replacing it after sending CCS. (CVE-2013-6450). ca98926 When deciding whether to use TLS 1.2 PRF and record hash algorithms use the version number in the corresponding SSL_METHOD structure instead of the SSL structure. The SSL structure version is sometimes inaccurate. Note: OpenSSL 1.0.2 and later effectively do this already. (CVE-2013-6449). Security: CVE-2013-4353 Security: CVE-2013-6449 Security: CVE-2013-6450
Diffstat (limited to 'crypto/openssl/ssl/ssl_locl.h')
-rw-r--r--crypto/openssl/ssl/ssl_locl.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/crypto/openssl/ssl/ssl_locl.h b/crypto/openssl/ssl/ssl_locl.h
index 1b98947..ada8008 100644
--- a/crypto/openssl/ssl/ssl_locl.h
+++ b/crypto/openssl/ssl/ssl_locl.h
@@ -621,6 +621,8 @@ extern SSL3_ENC_METHOD TLSv1_enc_data;
extern SSL3_ENC_METHOD SSLv3_enc_data;
extern SSL3_ENC_METHOD DTLSv1_enc_data;
+#define SSL_IS_DTLS(s) (s->method->version == DTLS1_VERSION)
+
#define IMPLEMENT_tls_meth_func(version, func_name, s_accept, s_connect, \
s_get_meth) \
const SSL_METHOD *func_name(void) \
OpenPOWER on IntegriCloud