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

/external/chromium/net/base/
H A Dx509_openssl_util.cc58 bool ParseDate(ASN1_TIME* x509_time, base::Time* time) { argument
59 if (!x509_time ||
60 (x509_time->type != V_ASN1_UTCTIME &&
61 x509_time->type != V_ASN1_GENERALIZEDTIME))
64 base::StringPiece str_date(reinterpret_cast<const char*>(x509_time->data),
65 x509_time->length);
67 CertDateFormat format = x509_time->type == V_ASN1_UTCTIME ?
H A Dx509_certificate_mac.cc216 CSSM_X509_TIME* x509_time = reinterpret_cast<CSSM_X509_TIME*>( local
218 if (x509_time->timeType != BER_TAG_UTC_TIME &&
219 x509_time->timeType != BER_TAG_GENERALIZED_TIME) {
221 << x509_time->timeType;
226 reinterpret_cast<const char*>(x509_time->time.Data),
227 x509_time->time.Length);
228 CertDateFormat format = x509_time->timeType == BER_TAG_UTC_TIME ?

Completed in 82 milliseconds