HomeSort by relevance Sort by last modified time
    Searched full:cert_id (Results 1 - 25 of 50) sorted by null

1 2

  /external/chromium_org/content/public/browser/
load_from_memory_cache_details.cc 12 int cert_id,
19 cert_id(cert_id),
resource_request_details.cc 14 int cert_id)
22 ssl_cert_id(cert_id),
37 int cert_id,
39 : ResourceRequestDetails(request, cert_id),
load_from_memory_cache_details.h 19 int cert_id,
28 int cert_id; member in struct:content::LoadFromMemoryCacheDetails
resource_request_details.h 26 ResourceRequestDetails(const net::URLRequest* request, int cert_id);
51 int cert_id,
cert_store.h 40 // |cert_id|. Returns whether the cert could be found, and, if |cert| is
42 virtual bool RetrieveCert(int cert_id,
  /external/chromium_org/content/common/
ssl_status_serialization.cc 13 int cert_id,
20 pickle.WriteInt(cert_id);
36 int* cert_id,
41 DCHECK(cert_id && cert_status && security_bits && ssl_connection_status &&
45 *cert_id = 0;
57 if (!pickle.ReadInt(&iter, cert_id) ||
ssl_status_serialization.h 18 int cert_id,
27 int* cert_id,
  /external/chromium_org/chrome/browser/
certificate_viewer.h 19 // the |CertStore| with id |cert_id|.
22 int cert_id);
certificate_viewer.cc 12 int cert_id) {
14 content::CertStore::GetInstance()->RetrieveCert(cert_id, &cert);
  /external/chromium_org/content/browser/
cert_store_impl.cc 27 bool CertStoreImpl::RetrieveCert(int cert_id,
29 return store_.Retrieve(cert_id, cert);
cert_store_impl.h 23 virtual bool RetrieveCert(int cert_id,
  /external/chromium_org/content/public/common/
ssl_status.cc 11 cert_id(0),
ssl_status.h 37 cert_id == status.cert_id &&
46 int cert_id; member in struct:content::SSLStatus
  /external/chromium_org/chromeos/network/
client_cert_util.cc 100 std::string GetPkcs11AndSlotIdFromEapCertId(const std::string& cert_id,
103 if (cert_id.empty())
106 size_t delimiter_pos = cert_id.find(':');
108 // No delimiter found, so |cert_id| only contains the PKCS11 id.
109 return cert_id;
111 if (delimiter_pos + 1 >= cert_id.size()) {
116 if (base::StringToInt(cert_id.substr(0, delimiter_pos), &parsed_slot_id))
119 LOG(ERROR) << "Slot ID is not an integer. Cert ID is: " << cert_id << ".";
120 return cert_id.substr(delimiter_pos + 1);
163 std::string cert_id; local
344 std::string cert_id = GetStringFromDictionary( local
    [all...]
network_cert_migrator_unittest.cc 164 void SetupNetworkWithEapCertId(bool wifi, const std::string& cert_id) {
169 name, shill::kEapCertIdProperty, base::StringValue(cert_id));
171 name, shill::kEapKeyIdProperty, base::StringValue(cert_id));
181 void GetEapCertId(bool wifi, std::string* cert_id) {
182 cert_id->clear();
188 cert_id);
395 std::string cert_id; local
396 GetEapCertId(true /* wifi */, &cert_id);
397 EXPECT_EQ(std::string(), cert_id); local
410 std::string cert_id; local
428 std::string cert_id; local
448 std::string cert_id; local
483 std::string cert_id; local
    [all...]
client_cert_util.h 58 // Returns the PKCS11 and slot ID of |cert_id|, which is expected to be a
62 const std::string& cert_id,
  /external/chromium_org/chrome/browser/ssl/
ssl_error_info.h 54 // TODO(wtc): Document |cert_id| and |url| arguments.
55 static int GetErrorsForCertStatus(int cert_id,
ssl_error_info.cc 205 int SSLErrorInfo::GetErrorsForCertStatus(int cert_id,
243 cert_id, &cert);
  /external/chromium_org/chrome/browser/ui/website_settings/
website_settings_unittest.cc 123 int cert_id() { return cert_id_; } function in class:__anon10023::WebsiteSettingsTest
250 ssl_.cert_id = cert_id();
271 ssl_.cert_id = cert_id();
300 ssl_.cert_id = ev_cert_id;
322 ssl_.cert_id = cert_id();
342 ssl_.cert_id = cert_id();
    [all...]
website_settings.cc 357 cert_id_ = ssl.cert_id;
359 if (ssl.cert_id && !ssl.signed_certificate_timestamp_ids.empty()) {
365 if (ssl.cert_id &&
366 cert_store_->RetrieveCert(ssl.cert_id, &cert) &&
478 SSLErrorInfo::GetErrorsForCertStatus(ssl.cert_id, ssl.cert_status,
508 DCHECK(!ssl.cert_id);
745 info.cert_id = cert_id_;
  /external/chromium_org/chrome/browser/ui/android/
website_settings_popup_android.cc 41 int cert_id = local
42 web_contents->GetController().GetVisibleEntry()->GetSSL().cert_id;
44 bool ok = CertStore::GetInstance()->RetrieveCert(cert_id, &cert);
130 if (identity_info.cert_id) {
  /external/wpa_supplicant_8/wpa_supplicant/examples/
openCryptoki.conf 35 cert_id="4"
  /external/chromium_org/net/cert/
ct_objects_extractor_openssl.cc 130 CBS single_response, cert_id; local
132 !CBS_get_asn1(&single_response, &cert_id, CBS_ASN1_SEQUENCE)) {
137 if (!CBS_get_asn1(&cert_id, &hash_algorithm, CBS_ASN1_SEQUENCE) ||
139 !CBS_get_asn1(&cert_id, &issuer_name_hash, CBS_ASN1_OCTETSTRING) ||
140 !CBS_get_asn1(&cert_id, &issuer_key_hash, CBS_ASN1_OCTETSTRING) ||
141 !CBS_get_asn1(&cert_id, &serial_number, CBS_ASN1_INTEGER) ||
142 CBS_len(&cert_id) != 0) {
ct_objects_extractor_nss.cc 323 CertID cert_id; member in struct:net::ct::__anon13703::SingleResponse
333 { SEC_ASN1_INLINE, offsetof(SingleResponse, cert_id), kCertIDTemplate },
406 bool CertIDMatches(const CertID& cert_id,
410 if (!StringEqualToSECItem(serial_number, cert_id.serial_number))
413 SECOidTag hash_alg = SECOID_FindOIDTag(&cert_id.hash_algorithm.algorithm);
417 cert_id.issuer_key_hash);
420 cert_id.issuer_key_hash);
601 if (CertIDMatches(resp->cert_id, cert_serial_number,
  /external/chromium_org/content/browser/ssl/
ssl_manager.cc 139 entry->GetSSL().cert_id = ssl_cert_id;
176 details.cert_id,

Completed in 1676 milliseconds

1 2