summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/man/X509_get0_notBefore.3 (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Remove ASN1_time_parse documentationtb2024-03-051-3/+2
|
* In 1995, Eric A. Young chose a confusing name for the "lastUpdate" fieldschwarze2023-06-061-9/+15
| | | | | | | | | | | | | | | of the X509_CRL_INFO object. It should have been called "thisUpdate" like in RFC 5280 section 5.1 (and in its precursor RFC 2459). Then again, RFC 2459 was only published in 1999, so maybe the terminology wasn't firmly established yet when Young wrote his code several years earlier - just guessing, neither we nor the OpenSSL folks appear to know the real reasons... Anyway, we have been stuck with the "lastUpdate" names in the API for more than two decades now, so clarify in the documentation what they refer to and what they really mean. Requested by and OK tb@.
* 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?