OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
...]