OpenBSD manual page server

Manual Page Search Parameters

ASN1_TIME_PARSE(3) Library Functions Manual ASN1_TIME_PARSE(3)

ASN1_time_parse, ASN1_time_tm_cmp, ASN1_TIME_set_tmLibreSSL utilities for ASN.1 time types

#include <openssl/asn1.h>

int
ASN1_time_parse(const char *bytes, size_t len, struct tm *tm, int mode);

int
ASN1_time_tm_cmp(struct tm *tm1, struct tm *tm2);

ASN1_TIME *
ASN1_TIME_set_tm(ASN1_TIME *s, struct tm *tm);

The () function parses an ASN.1 time string of len bytes starting at bytes. The resulting time is stored in tm if tm is not NULL.

The mode parameter must be one of

The () function compares two times in tm1 and tm2.

The function () sets the ASN1_TIME structure s to the time represented by the struct tm value pointed to by tm. If s is NULL, a new ASN1_TIME structure is allocated and returned.

ASN1_time_parse() returns

ASN1_time_tm_cmp() returns

ASN1_TIME_set_tm() returns a pointer to an ASN1_TIME structure or NULL if an error occurred.

ASN1_TIME_new(3), ASN1_TIME_set(3), X509_cmp_time(3)

ASN1_time_parse() and ASN1_time_tm_cmp() first appeared in OpenBSD 6.1 and ASN1_TIME_set_tm() in OpenBSD 6.2.

November 2, 2020 OpenBSD-7.1