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

  /external/chromium/net/base/
x509_openssl_util.cc 58 bool ParseDate(ASN1_TIME* x509_time, base::Time* time) {
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 ?
x509_openssl_util.h 34 bool ParseDate(ASN1_TIME* x509_time, base::Time* time);
x509_certificate_mac.cc 216 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 ?
    [all...]
  /external/chromium_org/net/cert/
x509_util_openssl.cc 113 bool ParseDate(ASN1_TIME* x509_time, base::Time* time) {
114 if (!x509_time ||
115 (x509_time->type != V_ASN1_UTCTIME &&
116 x509_time->type != V_ASN1_GENERALIZEDTIME))
119 base::StringPiece str_date(reinterpret_cast<const char*>(x509_time->data),
120 x509_time->length);
122 CertDateFormat format = x509_time->type == V_ASN1_UTCTIME ?
x509_util_openssl.h 39 bool NET_EXPORT ParseDate(ASN1_TIME* x509_time, base::Time* time);
x509_certificate_mac.cc 85 const CSSM_X509_TIME* x509_time = field.GetAs<CSSM_X509_TIME>(); local
86 if (x509_time->timeType != BER_TAG_UTC_TIME &&
87 x509_time->timeType != BER_TAG_GENERALIZED_TIME) {
89 << x509_time->timeType;
94 reinterpret_cast<const char*>(x509_time->time.Data),
95 x509_time->time.Length);
96 CertDateFormat format = x509_time->timeType == BER_TAG_UTC_TIME ?

Completed in 174 milliseconds