diff options
Diffstat (limited to 'net/base/cert_database.h')
-rw-r--r-- | net/base/cert_database.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/net/base/cert_database.h b/net/base/cert_database.h index 113a658..a40a56f 100644 --- a/net/base/cert_database.h +++ b/net/base/cert_database.h @@ -100,6 +100,17 @@ class CertDatabase { unsigned int trust_bits, ImportCertFailureList* not_imported); + // Import server certificate. The first cert should be the server cert. Any + // additional certs should be intermediate/CA certs and will be imported but + // not given any trust. + // Any certificates that could not be imported will be listed in + // |not_imported|. + // Returns false if there is an internal error, otherwise true is returned and + // |not_imported| should be checked for any certificates that were not + // imported. + bool ImportServerCert(const CertificateList& certificates, + ImportCertFailureList* not_imported); + // Get trust bits for certificate. unsigned int GetCertTrust(const X509Certificate* cert, CertType type) const; |