Home
last modified time | relevance | path

Searched refs:ASN1_time_parse (Results 1 – 11 of 11) sorted by relevance

/dragonfly/crypto/libressl/crypto/asn1/
H A Da_time_tm.c324 ASN1_time_parse(const char *bytes, size_t len, struct tm *tm, int mode) in ASN1_time_parse() function
358 if ((type = ASN1_time_parse(str, strlen(str), NULL, mode)) == -1) in ASN1_TIME_set_string_internal()
429 return (t->type == ASN1_time_parse(t->data, t->length, NULL, t->type)); in ASN1_TIME_check()
441 if (t->type != ASN1_time_parse(t->data, t->length, &tm, t->type)) in ASN1_TIME_to_generalizedtime()
475 if (ASN1_time_parse(s->data, s->length, &tm1, mode) == -1) in ASN1_TIME_cmp_time_t_internal()
495 if (ASN1_time_parse(t1->data, t1->length, &tm1, t1->type) == -1) in ASN1_TIME_compare()
498 if (ASN1_time_parse(t1->data, t2->length, &tm2, t2->type) == -1) in ASN1_TIME_compare()
524 return (d->type == ASN1_time_parse(d->data, d->length, NULL, d->type)); in ASN1_UTCTIME_check()
565 return (d->type == ASN1_time_parse(d->data, d->length, NULL, d->type)); in ASN1_GENERALIZEDTIME_check()
H A Da_time.c101 return ASN1_time_parse(s->data, s->length, tm, 0) != -1; in ASN1_TIME_to_tm()
/dragonfly/crypto/libressl/tls/
H A Dtls_conninfo.c119 if (ASN1_time_parse(before->data, before->length, &before_tm, 0) == -1) in tls_get_peer_cert_times()
121 if (ASN1_time_parse(after->data, after->length, &after_tm, 0) == -1) in tls_get_peer_cert_times()
H A Dtls_ocsp.c65 if (ASN1_time_parse(gt->data, gt->length, &tm, in tls_ocsp_asn1_parse_time()
/dragonfly/crypto/libressl/crypto/ocsp/
H A Docsp_cl.c391 if (ASN1_time_parse(thisupd->data, thisupd->length, &tm_this, in OCSP_check_validity()
423 if (ASN1_time_parse(nextupd->data, nextupd->length, &tm_next, in OCSP_check_validity()
/dragonfly/crypto/libressl/apps/openssl/
H A Dx509.c1168 if (ASN1_time_parse(nB->data, nB->length, NULL, in x509_main()
1178 if (ASN1_time_parse(nA->data, nA->length, NULL, in x509_main()
H A Dca.c623 if (ASN1_time_parse(timestring, strlen(timestring), &tm1, 0) == -1) in setCertificateTime()
/dragonfly/crypto/libressl/crypto/x509/
H A Dx509_verify.c53 type = ASN1_time_parse(atime->data, atime->length, &tm, atime->type); in x509_verify_asn1_time_to_time_t()
/dragonfly/crypto/libressl/include/openssl/
H A Dasn1.h1197 int ASN1_time_parse(const char *_bytes, size_t _len, struct tm *_tm, int _mode);
/dragonfly/crypto/libressl/
H A DREADME.DELETED192 man/ASN1_time_parse.3
H A DChangeLog577 * Avoid use of uninitialized in ASN1_time_parse() which could happen