summaryrefslogtreecommitdiffstats
path: root/lib/libcrypto/man/X509_get0_notBefore.3 (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Document eight additional pre-OpenSSL-1.1 accessor functions that areschwarze2020-06-241-21/+122
| | | | | | | | | | still widely used according to code searches on the web, so people reading existing code will occasionally want to look them up. While here, correct the return type of X509_CRL_get0_lastUpdate(3) and X509_CRL_get0_nextUpdate(3), which return const pointers. Also, add some precision regarding RETURN VALUES.
* finish crypto HISTORY; mostly 1.1.0/6.3, but also various other fixesschwarze2018-03-231-2/+6
|
* In x509.h rev. 1.37 2018/02/22 17:01:44, jsing@ providedschwarze2018-02-251-7/+65
| | | | | | | X509_CRL_set1_lastUpdate(3) and X509_CRL_set1_nextUpdate(3) and in rev. 1.39 2018/02/22 17:06:42 X509_set1_notBefore(3) and X509_set1_notAfter(3). Document them, again from scratch because what OpenSSL provides is slightly confusing.
* In x509.h rev. 1.30 2018/02/20 17:04:58, jsing@ providedschwarze2018-02-221-4/+26
| | | | | X509_CRL_get0_lastUpdate(3) and X509_CRL_get0_nextUpdate(3). Document them.
* In x509.h rev. 1.28 2018/02/14 16:57:25, jsing@schwarze2018-02-151-0/+74
provided X509_get0_notBefore(3) and its three friends. Write a manual page from scratch because what OpenSSL has is confusing and incomplete. By the way, providing two identical functions differing only in the constness of the returned structure is crazy. Are application programmers expected to be too stupid to write const ASN1_TIME *notBefore = X509_getm_notBefore(x) if that's what they want?