HomeSort by relevance Sort by last modified time
    Searched full:cert_names (Results 1 - 4 of 4) sorted by null

  /external/chromium/net/base/
x509_certificate_unittest.cc 1031 const char* cert_names; member in struct:net::CertificateNameVerifyTestData
1109 std::vector<std::string> cert_names; local
    [all...]
x509_certificate_openssl.cc 425 std::vector<std::string> cert_names; local
426 GetDNSNames(&cert_names);
427 if (!VerifyHostname(hostname, cert_names))
x509_certificate.h 387 // Verifies that |hostname| matches one of the names in |cert_names|, based on
389 // The members of |cert_names| must have been extracted from the Subject CN or
395 const std::vector<std::string>& cert_names);
x509_certificate.cc 405 const std::vector<std::string>& cert_names) {
447 for (size_t index = 0; index < cert_names.size(); ++index) {
448 if (cert_names[index] == hostname) {
473 for (std::vector<std::string>::const_iterator it = cert_names.begin();
474 it != cert_names.end(); ++it) {
516 << ") in cert names " << JoinString(cert_names, '|');
    [all...]

Completed in 83 milliseconds