Lines Matching refs:ASN1_TIME
11 int X509_cmp_time(const ASN1_TIME *asn1_time, time_t *in_tm);
12 int X509_cmp_current_time(const ASN1_TIME *asn1_time);
14 const ASN1_TIME *start, const ASN1_TIME *end);
15 ASN1_TIME *X509_time_adj(ASN1_TIME *asn1_time, long offset_sec, time_t *in_tm);
16 ASN1_TIME *X509_time_adj_ex(ASN1_TIME *asn1_time, int offset_day, long
18 ASN1_TIME *X509_gmtime_adj(ASN1_TIME *asn1_time, long offset_sec);
22 X509_cmp_time() compares the ASN1_TIME in I<asn1_time> with the time
25 X509_cmp_current_time() compares the ASN1_TIME in
32 X509_time_adj_ex() sets the ASN1_TIME structure I<asn1_time> to the time
35 X509_time_adj() sets the ASN1_TIME structure I<asn1_time> to the time
40 In both methods, if I<asn1_time> is NULL, a new ASN1_TIME structure
46 I<asn1_time> must satisfy the ASN1_TIME format mandated by RFC 5280,
49 X509_gmtime_adj() sets the ASN1_TIME structure I<asn1_time> to the time
73 the updated ASN1_TIME structure, and NULL on error.