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@google.com>2016-07-09 00:44:26 +0300
committerDavid Benjamin <davidben@google.com>2016-07-11 21:28:28 +0300
commit7a4b404da5791f2897e75803867d889cdd0c77da (patch)
treee3996b1c0070154181b15d128fd4221ec8f1d1f7 /include/openssl/ssl.h
parent397c8e6fb6b493fae96328a41b1b94c6dd6f85d3 (diff)
Remove SSL_get_server_key_exchange_hash.
Chromium no longer uses it. Change-Id: I50cc55bad4124305686d299032a2e8ed2cb9d0d7 Reviewed-on: https://boringssl-review.googlesource.com/8691 Reviewed-by: David Benjamin <davidben@google.com>
Diffstat (limited to 'include/openssl/ssl.h')
-rw-r--r--include/openssl/ssl.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/include/openssl/ssl.h b/include/openssl/ssl.h
index 5f437032..5148fad0 100644
--- a/include/openssl/ssl.h
+++ b/include/openssl/ssl.h
@@ -3212,14 +3212,6 @@ OPENSSL_EXPORT void SSL_load_error_strings(void);
OPENSSL_EXPORT int SSL_CTX_set_tlsext_use_srtp(SSL_CTX *ctx,
const char *profiles);
-/* SSL_get_server_key_exchange_hash, on a client, returns the hash the server
- * used to sign the ServerKeyExchange in TLS 1.2. If not applicable, it returns
- * |TLSEXT_hash_none|.
- *
- * TODO(davidben): Remove once Chromium switches to
- * |SSL_get_peer_signature_algorithm|. */
-OPENSSL_EXPORT uint8_t SSL_get_server_key_exchange_hash(const SSL *ssl);
-
/* SSL_set_tlsext_use_srtp calls |SSL_set_srtp_profiles|. It returns zero on
* success and one on failure.
*