summaryrefslogtreecommitdiffstats
path: root/net/base/ssl_config_service.h
diff options
context:
space:
mode:
authorsergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-07-20 02:14:01 +0000
committersergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-07-20 02:14:01 +0000
commit3d5c1bdce6865b3e02cc58f0a8083eb1cbb77b47 (patch)
tree1fcf95c5bb0b231cb97f7ef10e7078e0b4423be1 /net/base/ssl_config_service.h
parent492f1c3f1296aecc8a1a33e341094e922d6d2ba5 (diff)
downloadchromium_src-3d5c1bdce6865b3e02cc58f0a8083eb1cbb77b47.zip
chromium_src-3d5c1bdce6865b3e02cc58f0a8083eb1cbb77b47.tar.gz
chromium_src-3d5c1bdce6865b3e02cc58f0a8083eb1cbb77b47.tar.bz2
Don't use X509Certificate in SSLConfig.
X509Certificate class depends in OS-dependant APIs and hense cannot be created inside of sandbox. This change allows specifying allow_bed_certs when running inside of sandbox. BUG=80587 TEST=Unittests Review URL: http://codereview.chromium.org/7401003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@93153 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/base/ssl_config_service.h')
-rw-r--r--net/base/ssl_config_service.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/net/base/ssl_config_service.h b/net/base/ssl_config_service.h
index 2b2e28a..ab84aad 100644
--- a/net/base/ssl_config_service.h
+++ b/net/base/ssl_config_service.h
@@ -11,6 +11,7 @@
#include "base/basictypes.h"
#include "base/memory/ref_counted.h"
#include "base/observer_list.h"
+#include "base/string_piece.h"
#include "net/base/net_api.h"
#include "net/base/x509_certificate.h"
@@ -28,6 +29,11 @@ struct NET_API SSLConfig {
// be NULL if user doesn't care about the cert status.
bool IsAllowedBadCert(X509Certificate* cert, int* cert_status) const;
+ // Same as above except works with DER encoded certificates instead
+ // of X509Certificate.
+ bool IsAllowedBadCert(const base::StringPiece& der_cert,
+ int* cert_status) const;
+
bool rev_checking_enabled; // True if server certificate revocation
// checking is enabled.
// SSL 2.0 is not supported.
@@ -67,7 +73,7 @@ struct NET_API SSLConfig {
CertAndStatus();
~CertAndStatus();
- scoped_refptr<X509Certificate> cert;
+ std::string der_cert;
int cert_status;
};