OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:cert_names
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/net/cert/
x509_certificate_openssl.cc
493
std::vector<X509_NAME*>
cert_names
;
local
498
cert_names
.push_back(issuer);
504
cert_names
.push_back(issuer);
507
// and '
cert_names
'.
508
for (size_t n = 0; n <
cert_names
.size(); ++n) {
511
if (X509_NAME_cmp(issuer,
cert_names
[n]) == 0) {
x509_certificate_unittest.cc
[
all
...]
/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
411
const std::vector<std::string>&
cert_names
) {
453
for (size_t index = 0; index <
cert_names
.size(); ++index) {
454
if (
cert_names
[index] == hostname) {
479
for (std::vector<std::string>::const_iterator it =
cert_names
.begin();
480
it !=
cert_names
.end(); ++it) {
522
<< ") in cert names " << JoinString(
cert_names
, '|');
[
all
...]
Completed in 213 milliseconds