Index: net/base/ssl_config_service.h |
=================================================================== |
--- net/base/ssl_config_service.h (revision 88612) |
+++ net/base/ssl_config_service.h (working copy) |
@@ -57,6 +57,7 @@ |
// TODO(rsleevi): Not implemented when using Schannel. |
std::vector<uint16> disabled_cipher_suites; |
+ bool cached_info_enabled; // True if TLS cached info extension is enabled. |
bool false_start_enabled; // True if we'll use TLS False Start. |
// TODO(wtc): move the following members to a new SSLParams structure. They |
@@ -133,6 +134,11 @@ |
// False Start. |
static bool IsKnownFalseStartIncompatibleServer(const std::string& hostname); |
+ // Enables the TLS cached info extension, which allows the server to send |
+ // just a digest of its certificate chain |
wtc
2011/06/17 22:57:09
Nit: add a period (.)
rkn
2011/06/20 21:21:09
Done.
|
+ static void EnableCachedInfo(); |
+ static bool cached_info_enabled(); |
+ |
// Disables False Start in SSL connections. |
static void DisableFalseStart(); |
// True if we use False Start for SSL and TLS. |