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 07:15:29 +0400
committerAdam Langley <agl@google.com>2014-08-19 22:18:36 +0400
commite712778a7bfa65b971e9bbdc675f5abece108afd (patch)
treef4accd9443c165031379cf81d694217af5c162de /ssl/ssl_lib.c
parentb7725cf3ecfcb5f31834a8fb30f2522fc5c76f8c (diff)
Remove rsa_md5, md5, and sha1 fields from SSL_CTX.
Just use the normal API for them. Change-Id: Ibb5988611a86e8d39abda1e02087523d98defb51 Reviewed-on: https://boringssl-review.googlesource.com/1555 Reviewed-by: Adam Langley <agl@google.com>
Diffstat (limited to 'ssl/ssl_lib.c')
-rw-r--r--ssl/ssl_lib.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/ssl/ssl_lib.c b/ssl/ssl_lib.c
index ea8af85f..5e633c10 100644
--- a/ssl/ssl_lib.c
+++ b/ssl/ssl_lib.c
@@ -1984,10 +1984,6 @@ SSL_CTX *SSL_CTX_new(const SSL_METHOD *meth)
if (!ret->param)
goto err;
- ret->rsa_md5 = EVP_md5();
- ret->md5 = EVP_md5();
- ret->sha1 = EVP_sha1();
-
if ((ret->client_CA=sk_X509_NAME_new_null()) == NULL)
goto err;