OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:issuer_spki_hash
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/net/cert/
crl_set.h
47
//
issuer_spki_hash
: the SHA256 of the SubjectPublicKeyInfo of the CRL
51
const base::StringPiece&
issuer_spki_hash
) const;
cert_verify_proc_mac.cc
272
std::string
issuer_spki_hash
;
310
if (result != CRLSet::REVOKED && !
issuer_spki_hash
.empty())
311
result = crl_set->CheckSerial(serial,
issuer_spki_hash
);
313
issuer_spki_hash
= spki_hash;
cert_verify_proc_win.cc
408
std::string
issuer_spki_hash
;
local
435
if (result != CRLSet::REVOKED && !
issuer_spki_hash
.empty())
436
result = crl_set->CheckSerial(serial,
issuer_spki_hash
);
438
issuer_spki_hash
= spki_hash;
cert_verify_proc_nss.cc
289
std::string
issuer_spki_hash
;
local
311
if (result != CRLSet::REVOKED && !
issuer_spki_hash
.empty())
312
result = crl_set->CheckSerial(serial_number,
issuer_spki_hash
);
314
issuer_spki_hash
= spki_hash;
[
all
...]
crl_set.cc
538
const base::StringPiece&
issuer_spki_hash
) const {
552
crls_index_by_issuer_.find(
issuer_spki_hash
.as_string());
Completed in 154 milliseconds