Lines Matching +full:out +full:- +full:functions
17 ASN1_TIME_dup, ASN1_UTCTIME_dup, ASN1_GENERALIZEDTIME_dup - ASN.1 Time functions
61 ASN1_GENERALIZEDTIME **out);
70 functions set the structure I<s> to the time represented by the time_t
74 functions set the time structure I<s> to the time represented
82 ASN1_GENERALIZEDTIME_set_string() functions set the time structure I<s>
97 should be used after the ASN1_TIME_set_string() functions and before
98 ASN1_TIME_print() functions to get consistent (i.e. GMT) results.
101 functions check the syntax of the time structure I<s>.
104 functions print the time structure I<s> to BIO I<b> in human readable
107 If the time structure has invalid format it prints out "Bad time value" and
133 The ASN1_TIME_cmp_time_t() and ASN1_UTCTIME_cmp_time_t() functions compare
140 B<ASN1_GENERALIZEDTIME>, regardless of year. If either I<out> or
141 I<*out> are NULL, then a new object is allocated and must be freed after use.
143 The ASN1_TIME_dup(), ASN1_UTCTIME_dup() and ASN1_GENERALIZEDTIME_dup() functions
150 defined in RFC5280 et al. The time setting functions obey the rules outlined
176 It is recommended that functions starting with B<ASN1_TIME> be used instead of
177 those starting with B<ASN1_UTCTIME> or B<ASN1_GENERALIZEDTIME>. The functions
179 specific time format. The functions starting with B<ASN1_TIME> will operate on
185 not print out the timezone: it either prints out "GMT" or nothing. But all
211 return 1 if the time is successfully printed out and
218 passed-in time structure has invalid syntax, for example.
220 ASN1_TIME_cmp_time_t() and ASN1_UTCTIME_cmp_time_t() return -1 if I<s> is
221 before I<t>, 0 if I<s> equals I<t>, or 1 if I<s> is after I<t>. -2 is returned
224 ASN1_TIME_compare() returns -1 if I<a> is before I<b>, 0 if I<a> equals I<b>,
225 or 1 if I<a> is after I<b>. -2 is returned on error.
235 Set a time structure to one hour after the current time and print it out:
275 Copyright 2015-2021 The OpenSSL Project Authors. All Rights Reserved.