HomeSort by relevance Sort by last modified time
    Searched refs:ScopedPK11Slot (Results 1 - 25 of 43) sorted by null

1 2

  /external/chromium_org/net/cert/
nss_cert_database_chromeos.h 19 NSSCertDatabaseChromeOS(crypto::ScopedPK11Slot public_slot,
20 crypto::ScopedPK11Slot private_slot);
27 virtual crypto::ScopedPK11Slot GetPublicSlot() const OVERRIDE;
28 virtual crypto::ScopedPK11Slot GetPrivateSlot() const OVERRIDE;
44 crypto::ScopedPK11Slot public_slot_;
45 crypto::ScopedPK11Slot private_slot_;
nss_profile_filter_chromeos.h 38 void Init(crypto::ScopedPK11Slot public_slot,
39 crypto::ScopedPK11Slot private_slot);
65 crypto::ScopedPK11Slot public_slot_;
66 crypto::ScopedPK11Slot private_slot_;
nss_cert_database_chromeos.cc 22 crypto::ScopedPK11Slot public_slot,
23 crypto::ScopedPK11Slot private_slot)
49 crypto::ScopedPK11Slot NSSCertDatabaseChromeOS::GetPublicSlot() const {
50 return crypto::ScopedPK11Slot(
54 crypto::ScopedPK11Slot NSSCertDatabaseChromeOS::GetPrivateSlot() const {
55 return crypto::ScopedPK11Slot(
78 NSSCertDatabase::ListCertsImpl(crypto::ScopedPK11Slot(), certs);
nss_profile_filter_chromeos_unittest.cc 22 crypto::ScopedPK11Slot GetRootCertsSlot() {
32 return crypto::ScopedPK11Slot(PK11_ReferenceSlot(slot));
35 return crypto::ScopedPK11Slot();
71 crypto::ScopedPK11Slot private_slot_1(crypto::GetPrivateSlotForChromeOSUser(
73 base::Callback<void(crypto::ScopedPK11Slot)>()));
81 crypto::ScopedPK11Slot private_slot_2(crypto::GetPrivateSlotForChromeOSUser(
83 base::Callback<void(crypto::ScopedPK11Slot)>()));
116 crypto::ScopedPK11Slot internal_slot(PK11_GetInternalSlot());
123 crypto::ScopedPK11Slot internal_key_slot(PK11_GetInternalKeySlot());
133 crypto::ScopedPK11Slot root_certs_slot(GetRootCertsSlot())
    [all...]
nss_cert_database.cc 80 ListCertsImpl(crypto::ScopedPK11Slot(), certs);
92 base::Passed(crypto::ScopedPK11Slot()),
107 base::Passed(crypto::ScopedPK11Slot(PK11_ReferenceSlot(slot))),
112 crypto::ScopedPK11Slot NSSCertDatabase::GetPublicSlot() const {
113 return crypto::ScopedPK11Slot(crypto::GetPublicNSSKeySlot());
116 crypto::ScopedPK11Slot NSSCertDatabase::GetPrivateSlot() const {
117 return crypto::ScopedPK11Slot(crypto::GetPrivateNSSKeySlot());
121 crypto::ScopedPK11Slot slot(GetPublicSlot());
126 crypto::ScopedPK11Slot slot(GetPrivateSlot());
206 crypto::ScopedPK11Slot slot(GetPublicSlot())
    [all...]
nss_cert_database.h 125 virtual crypto::ScopedPK11Slot GetPublicSlot() const;
128 virtual crypto::ScopedPK11Slot GetPrivateSlot() const;
253 static void ListCertsImpl(crypto::ScopedPK11Slot slot,
nss_profile_filter_chromeos.cc 61 void NSSProfileFilterChromeOS::Init(crypto::ScopedPK11Slot public_slot,
62 crypto::ScopedPK11Slot private_slot) {
63 // crypto::ScopedPK11Slot actually holds a reference counted object.
  /external/chromium_org/chrome/browser/net/
nss_context_linux.cc 11 crypto::ScopedPK11Slot GetPublicNSSKeySlotForResourceContext(
14 return crypto::ScopedPK11Slot(crypto::GetPublicNSSKeySlot());
17 crypto::ScopedPK11Slot GetPrivateNSSKeySlotForResourceContext(
19 const base::Callback<void(crypto::ScopedPK11Slot)>& callback) {
21 return crypto::ScopedPK11Slot(crypto::GetPrivateNSSKeySlot());
nss_context.h 26 crypto::ScopedPK11Slot GetPublicNSSKeySlotForResourceContext(
33 crypto::ScopedPK11Slot GetPrivateNSSKeySlotForResourceContext(
35 const base::Callback<void(crypto::ScopedPK11Slot)>& callback)
nss_context_chromeos.cc 23 crypto::ScopedPK11Slot private_slot(crypto::GetPrivateSlotForChromeOSUser(
50 void DidGetPrivateSlot(crypto::ScopedPK11Slot private_slot) {
79 crypto::ScopedPK11Slot GetPublicNSSKeySlotForResourceContext(
85 crypto::ScopedPK11Slot GetPrivateNSSKeySlotForResourceContext(
87 const base::Callback<void(crypto::ScopedPK11Slot)>& callback) {
  /external/chromium_org/crypto/
nss_crypto_module_delegate.h 48 virtual ScopedPK11Slot RequestSlot() = 0;
nss_util_internal.h 69 CRYPTO_EXPORT ScopedPK11Slot GetPublicSlotForChromeOSUser(
75 CRYPTO_EXPORT ScopedPK11Slot GetPrivateSlotForChromeOSUser(
77 const base::Callback<void(ScopedPK11Slot)>& callback) WARN_UNUSED_RESULT;
symmetric_key_nss.cc 26 ScopedPK11Slot slot(PK11_GetInternalSlot());
71 ScopedPK11Slot slot(PK11_GetInternalSlot());
96 ScopedPK11Slot slot(PK11_GetInternalSlot());
nss_util.cc 219 ChromeOSUserData(ScopedPK11Slot public_slot, bool is_primary_user)
230 ScopedPK11Slot GetPublicSlot() {
231 return ScopedPK11Slot(
235 ScopedPK11Slot GetPrivateSlot(
236 const base::Callback<void(ScopedPK11Slot)>& callback) {
238 return ScopedPK11Slot(PK11_ReferenceSlot(private_slot_.get()));
241 return ScopedPK11Slot();
244 void SetPrivateSlot(ScopedPK11Slot private_slot) {
253 (*i).Run(ScopedPK11Slot(PK11_ReferenceSlot(private_slot_.get())));
258 ScopedPK11Slot public_slot_
    [all...]
scoped_nss_types.h 38 ScopedPK11Slot;
hmac_nss.cc 19 ScopedPK11Slot slot_;
  /external/chromium_org/chrome/browser/ui/
crypto_module_delegate_nss.h 44 virtual crypto::ScopedPK11Slot RequestSlot() OVERRIDE;
56 void DidGetSlot(const base::Closure& callback, crypto::ScopedPK11Slot slot);
70 crypto::ScopedPK11Slot slot_;
crypto_module_delegate_nss.cc 29 base::Callback<void(crypto::ScopedPK11Slot)> get_slot_callback;
42 crypto::ScopedPK11Slot ChromeNSSCryptoModuleDelegate::RequestSlot() {
92 crypto::ScopedPK11Slot slot) {
  /external/chromium_org/net/ssl/
client_cert_store_chromeos.h 41 crypto::ScopedPK11Slot private_slot);
45 void InitForTesting(crypto::ScopedPK11Slot public_slot,
46 crypto::ScopedPK11Slot private_slot);
client_cert_store_chromeos.cc 27 crypto::ScopedPK11Slot private_slot(crypto::GetPrivateSlotForChromeOSUser(
64 crypto::ScopedPK11Slot private_slot) {
71 crypto::ScopedPK11Slot public_slot,
72 crypto::ScopedPK11Slot private_slot) {
  /external/chromium_org/chrome/browser/chromeos/net/
cert_verify_proc_chromeos.h 28 explicit CertVerifyProcChromeOS(crypto::ScopedPK11Slot public_slot);
cert_verify_proc_chromeos.cc 31 crypto::ScopedPK11Slot public_slot) {
32 profile_filter_.Init(public_slot.Pass(), crypto::ScopedPK11Slot());
  /external/chromium_org/net/base/
keygen_handler_nss.cc 23 crypto::ScopedPK11Slot slot;
  /external/chromium_org/chromeos/
cert_loader.cc 90 crypto::ScopedPK11Slot slot(database_->GetPrivateSlot());
101 crypto::ScopedPK11Slot slot(database_->GetPrivateSlot());
cert_loader_unittest.cc 38 void FailOnPrivateSlotCallback(crypto::ScopedPK11Slot slot) {
102 crypto::ScopedPK11Slot private_slot(
309 primary_db_.reset(new net::NSSCertDatabaseChromeOS(crypto::ScopedPK11Slot(),
310 crypto::ScopedPK11Slot()));

Completed in 438 milliseconds

1 2