OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 #include "net/ssl/client_cert_store_chromeos.h" | 5 #include "net/ssl/client_cert_store_chromeos.h" |
6 | 6 |
7 #include <cert.h> | 7 #include <cert.h> |
8 | 8 |
9 #include "base/bind.h" | 9 #include "base/bind.h" |
10 #include "crypto/nss_crypto_module_delegate.h" | 10 #include "crypto/nss_crypto_module_delegate.h" |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 void ClientCertStoreChromeOS::DidGetPrivateSlot( | 60 void ClientCertStoreChromeOS::DidGetPrivateSlot( |
61 const SSLCertRequestInfo* request, | 61 const SSLCertRequestInfo* request, |
62 CertificateList* selected_certs, | 62 CertificateList* selected_certs, |
63 const base::Closure& callback, | 63 const base::Closure& callback, |
64 crypto::ScopedPK11Slot private_slot) { | 64 crypto::ScopedPK11Slot private_slot) { |
65 profile_filter_.Init(crypto::GetPublicSlotForChromeOSUser(username_hash_), | 65 profile_filter_.Init(crypto::GetPublicSlotForChromeOSUser(username_hash_), |
66 private_slot.Pass()); | 66 private_slot.Pass()); |
67 ClientCertStoreNSS::GetClientCerts(*request, selected_certs, callback); | 67 ClientCertStoreNSS::GetClientCerts(*request, selected_certs, callback); |
68 } | 68 } |
69 | 69 |
70 void ClientCertStoreChromeOS::InitForTesting( | |
71 crypto::ScopedPK11Slot public_slot, | |
72 crypto::ScopedPK11Slot private_slot) { | |
73 profile_filter_.Init(public_slot.Pass(), private_slot.Pass()); | |
74 } | |
75 | |
76 bool ClientCertStoreChromeOS::SelectClientCertsForTesting( | |
77 const CertificateList& input_certs, | |
78 const SSLCertRequestInfo& request, | |
79 CertificateList* selected_certs) { | |
80 CERTCertList* cert_list = CERT_NewCertList(); | |
81 if (!cert_list) | |
82 return false; | |
83 for (size_t i = 0; i < input_certs.size(); ++i) { | |
84 CERT_AddCertToListTail( | |
85 cert_list, CERT_DupCertificate(input_certs[i]->os_cert_handle())); | |
86 } | |
87 | |
88 GetClientCertsImpl(cert_list, request, false, selected_certs); | |
89 CERT_DestroyCertList(cert_list); | |
90 return true; | |
91 } | |
92 | |
93 | |
94 } // namespace net | 70 } // namespace net |
OLD | NEW |