HomeSort by relevance Sort by last modified time
    Searched refs:spki_hash (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/net/cert/
crl_set.h 41 // spki_hash: the SHA256 of the SubjectPublicKeyInfo of the certificate.
42 Result CheckSPKI(const base::StringPiece& spki_hash) const;
cert_verify_proc_mac.cc 291 const std::string spki_hash = crypto::SHA256HashString(spki); local
308 CRLSet::Result result = crl_set->CheckSPKI(spki_hash);
313 issuer_spki_hash = spki_hash;
cert_verify_proc_win.cc 423 const std::string spki_hash = crypto::SHA256HashString(spki); local
433 CRLSet::Result result = crl_set->CheckSPKI(spki_hash);
438 issuer_spki_hash = spki_hash;
crl_set.cc 524 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) {
cert_verify_proc_nss.cc 303 const std::string spki_hash = crypto::SHA256HashString(spki); local
309 CRLSet::Result result = crl_set->CheckSPKI(spki_hash);
314 issuer_spki_hash = spki_hash;
    [all...]
crl_set_unittest.cc 305 const uint8 spki_hash[] = { local
313 reinterpret_cast<const char*>(spki_hash)));

Completed in 91 milliseconds