1X509_GET0_NOTBEFORE(3) OpenSSL X509_GET0_NOTBEFORE(3)
2
3
4
6 X509_get0_notBefore, X509_getm_notBefore, X509_get0_notAfter,
7 X509_getm_notAfter, X509_set1_notBefore, X509_set1_notAfter,
8 X509_CRL_get0_lastUpdate, X509_CRL_get0_nextUpdate,
9 X509_CRL_set1_lastUpdate, X509_CRL_set1_nextUpdate - get or set
10 certificate or CRL dates
11
13 #include <openssl/x509.h>
14
15 const ASN1_TIME *X509_get0_notBefore(const X509 *x);
16 const ASN1_TIME *X509_get0_notAfter(const X509 *x);
17
18 ASN1_TIME *X509_getm_notBefore(const X509 *x);
19 ASN1_TIME *X509_getm_notAfter(const X509 *x);
20
21 int X509_set1_notBefore(X509 *x, const ASN1_TIME *tm);
22 int X509_set1_notAfter(X509 *x, const ASN1_TIME *tm);
23
24 const ASN1_TIME *X509_CRL_get0_lastUpdate(const X509_CRL *crl);
25 const ASN1_TIME *X509_CRL_get0_nextUpdate(const X509_CRL *crl);
26
27 int X509_CRL_set1_lastUpdate(X509_CRL *x, const ASN1_TIME *tm);
28 int X509_CRL_set1_nextUpdate(X509_CRL *x, const ASN1_TIME *tm);
29
31 X509_get0_notBefore() and X509_get0_notAfter() return the notBefore and
32 notAfter fields of certificate x respectively. The value returned is an
33 internal pointer which must not be freed up after the call.
34
35 X509_getm_notBefore() and X509_getm_notAfter() are similar to
36 X509_get0_notBefore() and X509_get0_notAfter() except they return non-
37 constant mutable references to the associated date field of the
38 certificate.
39
40 X509_set1_notBefore() and X509_set1_notAfter() set the notBefore and
41 notAfter fields of x to tm. Ownership of the passed parameter tm is not
42 transferred by these functions so it must be freed up after the call.
43
44 X509_CRL_get0_lastUpdate() and X509_CRL_get0_nextUpdate() return the
45 lastUpdate and nextUpdate fields of crl. The value returned is an
46 internal pointer which must not be freed up after the call. If the
47 nextUpdate field is absent from crl then NULL is returned.
48
49 X509_CRL_set1_lastUpdate() and X509_CRL_set1_nextUpdate() set the
50 lastUpdate and nextUpdate fields of crl to tm. Ownership of the passed
51 parameter tm is not transferred by these functions so it must be freed
52 up after the call.
53
55 X509_get0_notBefore(), X509_get0_notAfter() and
56 X509_CRL_get0_lastUpdate() return a pointer to an ASN1_TIME structure.
57
58 X509_CRL_get0_lastUpdate() return a pointer to an ASN1_TIME structure
59 or NULL if the lastUpdate field is absent.
60
61 X509_set1_notBefore(), X509_set1_notAfter(), X509_CRL_set1_lastUpdate()
62 and X509_CRL_set1_nextUpdate() return 1 for success or 0 for failure.
63
65 d2i_X509(3), ERR_get_error(3), X509_CRL_get0_by_serial(3),
66 X509_get0_signature(3), X509_get_ext_d2i(3),
67 X509_get_extension_flags(3), X509_get_pubkey(3),
68 X509_get_subject_name(3), X509_NAME_add_entry_by_txt(3),
69 X509_NAME_ENTRY_get_object(3), X509_NAME_get_index_by_NID(3),
70 X509_NAME_print_ex(3), X509_new(3), X509_sign(3), X509V3_get_d2i(3),
71 X509_verify_cert(3)
72
74 These functions are available in all versions of OpenSSL.
75
76 X509_get_notBefore() and X509_get_notAfter() were deprecated in OpenSSL
77 1.1.0
78
80 Copyright 2016 The OpenSSL Project Authors. All Rights Reserved.
81
82 Licensed under the OpenSSL license (the "License"). You may not use
83 this file except in compliance with the License. You can obtain a copy
84 in the file LICENSE in the source distribution or at
85 <https://www.openssl.org/source/license.html>.
86
87
88
891.1.1k 2021-03-26 X509_GET0_NOTBEFORE(3)