Lines Matching refs:ASN1_TIME
10 int X509_cmp_time(const ASN1_TIME *asn1_time, time_t *in_tm);
11 int X509_cmp_current_time(const ASN1_TIME *asn1_time);
12 ASN1_TIME *X509_time_adj(ASN1_TIME *asn1_time, long offset_sec, time_t *in_tm);
13 ASN1_TIME *X509_time_adj_ex(ASN1_TIME *asn1_time, int offset_day, long
18 X509_cmp_time() compares the ASN1_TIME in B<asn1_time> with the time
19 in <cmp_time>. X509_cmp_current_time() compares the ASN1_TIME in
21 must satisfy the ASN1_TIME format mandated by RFC 5280, i.e., its
24 X509_time_adj_ex() sets the ASN1_TIME structure B<asn1_time> to the time
27 X509_time_adj() sets the ASN1_TIME structure B<asn1_time> to the time
32 In both methods, if B<asn1_time> is NULL, a new ASN1_TIME structure
50 ASN1_TIME structure, and NULL on error.