Searched refs:spki_hash (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/net/cert/
H A Dcrl_set.h41 // spki_hash: the SHA256 of the SubjectPublicKeyInfo of the certificate.
42 Result CheckSPKI(const base::StringPiece& spki_hash) const;
H A Dcert_verify_proc_mac.cc291 const std::string spki_hash = crypto::SHA256HashString(spki); local
308 CRLSet::Result result = crl_set->CheckSPKI(spki_hash);
313 issuer_spki_hash = spki_hash;
H A Dcert_verify_proc_win.cc423 const std::string spki_hash = crypto::SHA256HashString(spki); local
433 CRLSet::Result result = crl_set->CheckSPKI(spki_hash);
438 issuer_spki_hash = spki_hash;
H A Dcrl_set.cc524 CRLSet::Result CRLSet::CheckSPKI(const base::StringPiece& spki_hash) const {
527 if (spki_hash.size() == i->size() &&
528 memcmp(spki_hash.data(), i->data(), i->size()) == 0) {
H A Dcert_verify_proc_nss.cc303 const std::string spki_hash = crypto::SHA256HashString(spki); local
309 CRLSet::Result result = crl_set->CheckSPKI(spki_hash);
314 issuer_spki_hash = spki_hash;
H A Dcrl_set_unittest.cc305 const uint8 spki_hash[] = { local
313 reinterpret_cast<const char*>(spki_hash)));

Completed in 125 milliseconds