Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/boringssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Benjamin <davidben@chromium.org>2014-08-19 23:18:42 +0400
committerAdam Langley <agl@google.com>2014-08-20 06:02:17 +0400
commitebf42b5f6f2ac0f1a569459d1e9a9c5a98f64aba (patch)
treea742ba52b1871491a6d12516713a37de071c138c /ssl/s3_enc.c
parentf6faa4b7105981ea8f9b29f2b2f7c83fbce1f0c4 (diff)
Remove remnants of now-removed cipher suites.
NULL, SRP, CAMELLIA, export ciphers, SSLv2, IDEA, and SEED are gone. Unknown directives are silently ignored in the parser, so there is no need to retain their masks and entries in the cipher suite aliases. Change-Id: If43b9cbce56b3e1c401db764b88996940452a300 Reviewed-on: https://boringssl-review.googlesource.com/1561 Reviewed-by: Adam Langley <agl@google.com>
Diffstat (limited to 'ssl/s3_enc.c')
-rw-r--r--ssl/s3_enc.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/ssl/s3_enc.c b/ssl/s3_enc.c
index 2f029b8e..9f5b5218 100644
--- a/ssl/s3_enc.c
+++ b/ssl/s3_enc.c
@@ -369,9 +369,6 @@ int ssl3_setup_key_block(SSL *s)
if (s->session->cipher != NULL)
{
- if (s->session->cipher->algorithm_enc == SSL_eNULL)
- s->s3->need_record_splitting = 0;
-
#ifndef OPENSSL_NO_RC4
if (s->session->cipher->algorithm_enc == SSL_RC4)
s->s3->need_record_splitting = 0;