| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef NET_CERT_NSS_CERT_DATABASE_H_ | 5 #ifndef NET_CERT_NSS_CERT_DATABASE_H_ |
| 6 #define NET_CERT_NSS_CERT_DATABASE_H_ | 6 #define NET_CERT_NSS_CERT_DATABASE_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
| 12 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
| 13 #include "base/strings/string16.h" | 13 #include "base/strings/string16.h" |
| 14 #include "crypto/scoped_nss_types.h" | 14 #include "crypto/scoped_nss_types.h" |
| 15 #include "net/base/net_export.h" | 15 #include "net/base/net_export.h" |
| 16 #include "net/cert/cert_type.h" | 16 #include "net/cert/cert_type.h" |
| 17 #include "net/cert/x509_certificate.h" | 17 #include "net/cert/x509_certificate.h" |
| 18 | 18 |
| 19 template <typename T> struct DefaultSingletonTraits; | 19 namespace base { |
| 20 template <typename T> struct DefaultLazyInstanceTraits; |
| 21 } |
| 20 template <class ObserverType> class ObserverListThreadSafe; | 22 template <class ObserverType> class ObserverListThreadSafe; |
| 21 | 23 |
| 22 namespace net { | 24 namespace net { |
| 23 | 25 |
| 24 class CryptoModule; | 26 class CryptoModule; |
| 25 typedef std::vector<scoped_refptr<CryptoModule> > CryptoModuleList; | 27 typedef std::vector<scoped_refptr<CryptoModule> > CryptoModuleList; |
| 26 | 28 |
| 27 // Provides functions to manipulate the NSS certificate stores. | 29 // Provides functions to manipulate the NSS certificate stores. |
| 28 class NET_EXPORT NSSCertDatabase { | 30 class NET_EXPORT NSSCertDatabase { |
| 29 public: | 31 public: |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 TRUSTED_OBJ_SIGN = 1 << 2, | 88 TRUSTED_OBJ_SIGN = 1 << 2, |
| 87 DISTRUSTED_SSL = 1 << 3, | 89 DISTRUSTED_SSL = 1 << 3, |
| 88 DISTRUSTED_EMAIL = 1 << 4, | 90 DISTRUSTED_EMAIL = 1 << 4, |
| 89 DISTRUSTED_OBJ_SIGN = 1 << 5, | 91 DISTRUSTED_OBJ_SIGN = 1 << 5, |
| 90 }; | 92 }; |
| 91 | 93 |
| 92 static NSSCertDatabase* GetInstance(); | 94 static NSSCertDatabase* GetInstance(); |
| 93 | 95 |
| 94 // Get a list of unique certificates in the certificate database (one | 96 // Get a list of unique certificates in the certificate database (one |
| 95 // instance of all certificates). | 97 // instance of all certificates). |
| 96 void ListCerts(CertificateList* certs); | 98 virtual void ListCerts(CertificateList* certs); |
| 97 | 99 |
| 98 // Get the default slot for public key data. | 100 // Get the default slot for public key data. |
| 99 crypto::ScopedPK11Slot GetPublicSlot() const; | 101 virtual crypto::ScopedPK11Slot GetPublicSlot() const; |
| 100 | 102 |
| 101 // Get the default slot for private key or mixed private/public key data. | 103 // Get the default slot for private key or mixed private/public key data. |
| 102 crypto::ScopedPK11Slot GetPrivateSlot() const; | 104 virtual crypto::ScopedPK11Slot GetPrivateSlot() const; |
| 103 | 105 |
| 104 // Get the default module for public key data. | 106 // Get the default module for public key data. |
| 105 // The returned pointer must be stored in a scoped_refptr<CryptoModule>. | 107 // The returned pointer must be stored in a scoped_refptr<CryptoModule>. |
| 106 // DEPRECATED: use GetPublicSlot instead. | 108 // DEPRECATED: use GetPublicSlot instead. |
| 107 // TODO(mattm): remove usage of this method and remove it. | 109 // TODO(mattm): remove usage of this method and remove it. |
| 108 CryptoModule* GetPublicModule() const; | 110 CryptoModule* GetPublicModule() const; |
| 109 | 111 |
| 110 // Get the default module for private key or mixed private/public key data. | 112 // Get the default module for private key or mixed private/public key data. |
| 111 // The returned pointer must be stored in a scoped_refptr<CryptoModule>. | 113 // The returned pointer must be stored in a scoped_refptr<CryptoModule>. |
| 112 // DEPRECATED: use GetPrivateSlot instead. | 114 // DEPRECATED: use GetPrivateSlot instead. |
| 113 // TODO(mattm): remove usage of this method and remove it. | 115 // TODO(mattm): remove usage of this method and remove it. |
| 114 CryptoModule* GetPrivateModule() const; | 116 CryptoModule* GetPrivateModule() const; |
| 115 | 117 |
| 116 // Get all modules. | 118 // Get all modules. |
| 117 // If |need_rw| is true, only writable modules will be returned. | 119 // If |need_rw| is true, only writable modules will be returned. |
| 118 // TODO(mattm): come up with better alternative to CryptoModuleList. | 120 // TODO(mattm): come up with better alternative to CryptoModuleList. |
| 119 void ListModules(CryptoModuleList* modules, bool need_rw) const; | 121 virtual void ListModules(CryptoModuleList* modules, bool need_rw) const; |
| 120 | 122 |
| 121 // Import certificates and private keys from PKCS #12 blob into the module. | 123 // Import certificates and private keys from PKCS #12 blob into the module. |
| 122 // If |is_extractable| is false, mark the private key as being unextractable | 124 // If |is_extractable| is false, mark the private key as being unextractable |
| 123 // from the module. | 125 // from the module. |
| 124 // Returns OK or a network error code such as ERR_PKCS12_IMPORT_BAD_PASSWORD | 126 // Returns OK or a network error code such as ERR_PKCS12_IMPORT_BAD_PASSWORD |
| 125 // or ERR_PKCS12_IMPORT_ERROR. |imported_certs|, if non-NULL, returns a list | 127 // or ERR_PKCS12_IMPORT_ERROR. |imported_certs|, if non-NULL, returns a list |
| 126 // of certs that were imported. | 128 // of certs that were imported. |
| 127 int ImportFromPKCS12(CryptoModule* module, | 129 int ImportFromPKCS12(CryptoModule* module, |
| 128 const std::string& data, | 130 const std::string& data, |
| 129 const base::string16& password, | 131 const base::string16& password, |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 189 | 191 |
| 190 // Check whether cert is stored in a readonly slot. | 192 // Check whether cert is stored in a readonly slot. |
| 191 bool IsReadOnly(const X509Certificate* cert) const; | 193 bool IsReadOnly(const X509Certificate* cert) const; |
| 192 | 194 |
| 193 // Check whether cert is stored in a hardware slot. | 195 // Check whether cert is stored in a hardware slot. |
| 194 bool IsHardwareBacked(const X509Certificate* cert) const; | 196 bool IsHardwareBacked(const X509Certificate* cert) const; |
| 195 | 197 |
| 196 // Registers |observer| to receive notifications of certificate changes. The | 198 // Registers |observer| to receive notifications of certificate changes. The |
| 197 // thread on which this is called is the thread on which |observer| will be | 199 // thread on which this is called is the thread on which |observer| will be |
| 198 // called back with notifications. | 200 // called back with notifications. |
| 201 // NOTE: CertDatabase::AddObserver should be preferred. Observers registered |
| 202 // here will only recieve notifications generated directly through the |
| 203 // NSSCertDatabase, but not those from the CertDatabase. The CertDatabase |
| 204 // observers will recieve both. |
| 199 void AddObserver(Observer* observer); | 205 void AddObserver(Observer* observer); |
| 200 | 206 |
| 201 // Unregisters |observer| from receiving notifications. This must be called | 207 // Unregisters |observer| from receiving notifications. This must be called |
| 202 // on the same thread on which AddObserver() was called. | 208 // on the same thread on which AddObserver() was called. |
| 203 void RemoveObserver(Observer* observer); | 209 void RemoveObserver(Observer* observer); |
| 204 | 210 |
| 211 protected: |
| 212 NSSCertDatabase(); |
| 213 virtual ~NSSCertDatabase(); |
| 214 |
| 205 private: | 215 private: |
| 206 friend struct DefaultSingletonTraits<NSSCertDatabase>; | 216 friend struct base::DefaultLazyInstanceTraits<NSSCertDatabase>; |
| 207 | |
| 208 NSSCertDatabase(); | |
| 209 ~NSSCertDatabase(); | |
| 210 | 217 |
| 211 // Broadcasts notifications to all registered observers. | 218 // Broadcasts notifications to all registered observers. |
| 212 void NotifyObserversOfCertAdded(const X509Certificate* cert); | 219 void NotifyObserversOfCertAdded(const X509Certificate* cert); |
| 213 void NotifyObserversOfCertRemoved(const X509Certificate* cert); | 220 void NotifyObserversOfCertRemoved(const X509Certificate* cert); |
| 214 void NotifyObserversOfCACertChanged(const X509Certificate* cert); | 221 void NotifyObserversOfCACertChanged(const X509Certificate* cert); |
| 215 | 222 |
| 216 const scoped_refptr<ObserverListThreadSafe<Observer> > observer_list_; | 223 const scoped_refptr<ObserverListThreadSafe<Observer> > observer_list_; |
| 217 | 224 |
| 218 DISALLOW_COPY_AND_ASSIGN(NSSCertDatabase); | 225 DISALLOW_COPY_AND_ASSIGN(NSSCertDatabase); |
| 219 }; | 226 }; |
| 220 | 227 |
| 221 } // namespace net | 228 } // namespace net |
| 222 | 229 |
| 223 #endif // NET_CERT_NSS_CERT_DATABASE_H_ | 230 #endif // NET_CERT_NSS_CERT_DATABASE_H_ |
| OLD | NEW |