Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(247)

Unified Diff: net/socket/ssl_client_socket_impl.h

Issue 2156973002: Roll src/third_party/boringssl/src 10f97f3bf..8d315d705 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « DEPS ('k') | net/socket/ssl_client_socket_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/socket/ssl_client_socket_impl.h
diff --git a/net/socket/ssl_client_socket_impl.h b/net/socket/ssl_client_socket_impl.h
index 3b861aa643bc103c5a202170d9b2cfc075202204..e9554d498098c19eef3bb8ba5f02aaccbb2c36bc 100644
--- a/net/socket/ssl_client_socket_impl.h
+++ b/net/socket/ssl_client_socket_impl.h
@@ -217,18 +217,17 @@ class SSLClientSocketImpl : public SSLClientSocket {
// Callbacks for operations with the private key.
int PrivateKeyTypeCallback();
size_t PrivateKeyMaxSignatureLenCallback();
- ssl_private_key_result_t PrivateKeySignCallback(uint8_t* out,
- size_t* out_len,
- size_t max_out,
- const EVP_MD* md,
- const uint8_t* in,
- size_t in_len);
- ssl_private_key_result_t PrivateKeySignCompleteCallback(uint8_t* out,
- size_t* out_len,
- size_t max_out);
-
- void OnPrivateKeySignComplete(Error error,
- const std::vector<uint8_t>& signature);
+ ssl_private_key_result_t PrivateKeySignDigestCallback(uint8_t* out,
+ size_t* out_len,
+ size_t max_out,
+ const EVP_MD* md,
+ const uint8_t* in,
+ size_t in_len);
+ ssl_private_key_result_t PrivateKeyCompleteCallback(uint8_t* out,
+ size_t* out_len,
+ size_t max_out);
+
+ void OnPrivateKeyComplete(Error error, const std::vector<uint8_t>& signature);
int TokenBindingAdd(const uint8_t** out,
size_t* out_len,
« no previous file with comments | « DEPS ('k') | net/socket/ssl_client_socket_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698