Searched defs:x509_time (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/net/cert/
H A Dx509_certificate_mac.cc82 const CSSM_X509_TIME* x509_time = field.GetAs<CSSM_X509_TIME>(); local
83 if (x509_time->timeType != BER_TAG_UTC_TIME &&
84 x509_time->timeType != BER_TAG_GENERALIZED_TIME) {
86 << x509_time->timeType;
91 reinterpret_cast<const char*>(x509_time->time.Data),
92 x509_time->time.Length);
93 CertDateFormat format = x509_time->timeType == BER_TAG_UTC_TIME ?
H A Dx509_util_openssl.cc382 bool ParseDate(ASN1_TIME* x509_time, base::Time* time) { argument
383 if (!x509_time ||
384 (x509_time->type != V_ASN1_UTCTIME &&
385 x509_time->type != V_ASN1_GENERALIZEDTIME))
388 base::StringPiece str_date(reinterpret_cast<const char*>(x509_time->data),
389 x509_time->length);
391 CertDateFormat format = x509_time->type == V_ASN1_UTCTIME ?

Completed in 178 milliseconds