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-07 03:56:33 +0400
committerAdam Langley <agl@google.com>2014-08-15 02:00:16 +0400
commit335d10d201a22598c2b2c379148c9a095b8ab175 (patch)
treea429f794df70149086d754025cbb75686b2e74f8 /ssl/s3_lib.c
parent76d8abe7fd11b3f44a6c5ab09760b5957d058d28 (diff)
Remove Suite B mode.
It was added in OpenSSL 1.0.2, so nothing can be depending on it yet. If we really want a Suite B profile, it seems better to generate a configuration for the rest of the system rather than pepper the codebase with checks. Change-Id: I1be3ebed0e87cbfe236ade4174dcf5bbc7e10dd5 Reviewed-on: https://boringssl-review.googlesource.com/1517 Reviewed-by: Adam Langley <agl@google.com>
Diffstat (limited to 'ssl/s3_lib.c')
-rw-r--r--ssl/s3_lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/s3_lib.c b/ssl/s3_lib.c
index 8beb002c..3e0a9ced 100644
--- a/ssl/s3_lib.c
+++ b/ssl/s3_lib.c
@@ -3038,7 +3038,7 @@ SSL_CIPHER *ssl3_choose_cipher(SSL *s, STACK_OF(SSL_CIPHER) *clnt,
}
#endif
- if (s->options & SSL_OP_CIPHER_SERVER_PREFERENCE || tls1_suiteb(s))
+ if (s->options & SSL_OP_CIPHER_SERVER_PREFERENCE)
{
prio = srvr;
in_group_flags = server_pref->in_group_flags;