summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/libcrypto/man/X509_STORE_CTX_get_error.38
-rw-r--r--src/lib/libcrypto/man/X509_get0_notBefore.324
2 files changed, 20 insertions, 12 deletions
diff --git a/src/lib/libcrypto/man/X509_STORE_CTX_get_error.3 b/src/lib/libcrypto/man/X509_STORE_CTX_get_error.3
index b3d0ee3069..1f221563cb 100644
--- a/src/lib/libcrypto/man/X509_STORE_CTX_get_error.3
+++ b/src/lib/libcrypto/man/X509_STORE_CTX_get_error.3
@@ -1,4 +1,4 @@
1.\" $OpenBSD: X509_STORE_CTX_get_error.3,v 1.27 2023/04/30 14:49:47 tb Exp $ 1.\" $OpenBSD: X509_STORE_CTX_get_error.3,v 1.28 2023/06/06 16:20:13 schwarze Exp $
2.\" full merge up to: 2.\" full merge up to:
3.\" OpenSSL man3/X509_STORE_CTX_get_error 24a535ea Sep 22 13:14:20 2020 +0100 3.\" OpenSSL man3/X509_STORE_CTX_get_error 24a535ea Sep 22 13:14:20 2020 +0100
4.\" OpenSSL man3/X509_STORE_CTX_new 24a535ea Sep 22 13:14:20 2020 +0100 4.\" OpenSSL man3/X509_STORE_CTX_new 24a535ea Sep 22 13:14:20 2020 +0100
@@ -68,7 +68,7 @@
68.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 68.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
69.\" OF THE POSSIBILITY OF SUCH DAMAGE. 69.\" OF THE POSSIBILITY OF SUCH DAMAGE.
70.\" 70.\"
71.Dd $Mdocdate: April 30 2023 $ 71.Dd $Mdocdate: June 6 2023 $
72.Dt X509_STORE_CTX_GET_ERROR 3 72.Dt X509_STORE_CTX_GET_ERROR 3
73.Os 73.Os
74.Sh NAME 74.Sh NAME
@@ -386,7 +386,9 @@ The certificate notBefore field contains an invalid time.
386The certificate notAfter field contains an invalid time. 386The certificate notAfter field contains an invalid time.
387.It Dv X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD : \ 387.It Dv X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD : \
388 No format error in CRL's lastUpdate field 388 No format error in CRL's lastUpdate field
389The CRL lastUpdate field contains an invalid time. 389The CRL thisUpdate field (sic!) contains an invalid time.
390Both the name of the error constant and the text of the error message
391give a wrong name for the field that contains the problem.
390.It Dv X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD : \ 392.It Dv X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD : \
391 No format error in CRL's nextUpdate field 393 No format error in CRL's nextUpdate field
392The CRL nextUpdate field contains an invalid time. 394The CRL nextUpdate field contains an invalid time.
diff --git a/src/lib/libcrypto/man/X509_get0_notBefore.3 b/src/lib/libcrypto/man/X509_get0_notBefore.3
index e9f0d62992..53b18d5991 100644
--- a/src/lib/libcrypto/man/X509_get0_notBefore.3
+++ b/src/lib/libcrypto/man/X509_get0_notBefore.3
@@ -1,4 +1,4 @@
1.\" $OpenBSD: X509_get0_notBefore.3,v 1.5 2020/06/24 14:59:41 schwarze Exp $ 1.\" $OpenBSD: X509_get0_notBefore.3,v 1.6 2023/06/06 16:20:13 schwarze Exp $
2.\" content checked up to: OpenSSL 27b138e9 May 19 00:16:38 2017 +0000 2.\" content checked up to: OpenSSL 27b138e9 May 19 00:16:38 2017 +0000
3.\" 3.\"
4.\" Copyright (c) 2018, 2020 Ingo Schwarze <schwarze@openbsd.org> 4.\" Copyright (c) 2018, 2020 Ingo Schwarze <schwarze@openbsd.org>
@@ -15,7 +15,7 @@
15.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17.\" 17.\"
18.Dd $Mdocdate: June 24 2020 $ 18.Dd $Mdocdate: June 6 2023 $
19.Dt X509_GET0_NOTBEFORE 3 19.Dt X509_GET0_NOTBEFORE 3
20.Os 20.Os
21.Sh NAME 21.Sh NAME
@@ -142,14 +142,20 @@ and
142are identical except for the const qualifier on the return type. 142are identical except for the const qualifier on the return type.
143.Pp 143.Pp
144.Fn X509_CRL_get0_lastUpdate 144.Fn X509_CRL_get0_lastUpdate
145and 145is misnamed in a confusing way: it returns a pointer to the
146.Fa thisUpdate
147field of the
148.Fa crl ,
149indicating the time when this
150.Fa crl
151was issued.
152.Pp
146.Fn X509_CRL_get0_nextUpdate 153.Fn X509_CRL_get0_nextUpdate
147return pointers to the 154returns a pointer to the
148.Fa lastUpdate
149and
150.Fa nextUpdate 155.Fa nextUpdate
151fields of 156field of the
152.Fa crl . 157.Fa crl ,
158indicating the time when issuing the subsequent CRL will be due.
153.Pp 159.Pp
154.Fn X509_CRL_get_lastUpdate 160.Fn X509_CRL_get_lastUpdate
155and 161and
@@ -165,7 +171,7 @@ and
165set the 171set the
166.Fa notBefore , 172.Fa notBefore ,
167.Fa notAfter , 173.Fa notAfter ,
168.Fa lastUpdate , 174.Fa thisUpdate Pq sic!\& ,
169or 175or
170.Fa nextUpdate 176.Fa nextUpdate
171field of 177field of