diff options
author | job <> | 2024-08-12 15:34:58 +0000 |
---|---|---|
committer | job <> | 2024-08-12 15:34:58 +0000 |
commit | e52a64d54a35f07cf3ec8d6e1d172633a1b67aea (patch) | |
tree | 830f44291a022df3c807e5d485e78f6112953725 /src/usr.bin/openssl/openssl.1 | |
parent | be33cdebddbcda7d12a3d88ea90f6fa1ce95bdc4 (diff) | |
download | openbsd-e52a64d54a35f07cf3ec8d6e1d172633a1b67aea.tar.gz openbsd-e52a64d54a35f07cf3ec8d6e1d172633a1b67aea.tar.bz2 openbsd-e52a64d54a35f07cf3ec8d6e1d172633a1b67aea.zip |
Add -CRLfile option to 'cms' sub command
This option allows to verify certs in a CMS object against additional
CRLs.
Ported from work by Tom Harrison from APNIC
OK tb@
Diffstat (limited to 'src/usr.bin/openssl/openssl.1')
-rw-r--r-- | src/usr.bin/openssl/openssl.1 | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/usr.bin/openssl/openssl.1 b/src/usr.bin/openssl/openssl.1 index 9033309802..c185c7ebf7 100644 --- a/src/usr.bin/openssl/openssl.1 +++ b/src/usr.bin/openssl/openssl.1 | |||
@@ -1,4 +1,4 @@ | |||
1 | .\" $OpenBSD: openssl.1,v 1.157 2024/07/08 06:00:09 tb Exp $ | 1 | .\" $OpenBSD: openssl.1,v 1.158 2024/08/12 15:34:58 job Exp $ |
2 | .\" ==================================================================== | 2 | .\" ==================================================================== |
3 | .\" Copyright (c) 1998-2002 The OpenSSL Project. All rights reserved. | 3 | .\" Copyright (c) 1998-2002 The OpenSSL Project. All rights reserved. |
4 | .\" | 4 | .\" |
@@ -110,7 +110,7 @@ | |||
110 | .\" copied and put under another distribution licence | 110 | .\" copied and put under another distribution licence |
111 | .\" [including the GNU Public Licence.] | 111 | .\" [including the GNU Public Licence.] |
112 | .\" | 112 | .\" |
113 | .Dd $Mdocdate: July 8 2024 $ | 113 | .Dd $Mdocdate: August 12 2024 $ |
114 | .Dt OPENSSL 1 | 114 | .Dt OPENSSL 1 |
115 | .Os | 115 | .Os |
116 | .Sh NAME | 116 | .Sh NAME |
@@ -943,6 +943,7 @@ but without cipher suite codes. | |||
943 | .Oc | 943 | .Oc |
944 | .Op Fl CAfile Ar file | 944 | .Op Fl CAfile Ar file |
945 | .Op Fl CApath Ar directory | 945 | .Op Fl CApath Ar directory |
946 | .Op Fl CRLfile Ar file | ||
946 | .Op Fl binary | 947 | .Op Fl binary |
947 | .Op Fl certfile Ar file | 948 | .Op Fl certfile Ar file |
948 | .Op Fl certsout Ar file | 949 | .Op Fl certsout Ar file |
@@ -1133,6 +1134,9 @@ This directory must be a standard certificate directory: that is a hash | |||
1133 | of each subject name (using | 1134 | of each subject name (using |
1134 | .Nm x509 Fl hash ) | 1135 | .Nm x509 Fl hash ) |
1135 | should be linked to each certificate. | 1136 | should be linked to each certificate. |
1137 | .It Fl CRLfile Ar file | ||
1138 | Allows additional certificate revocation lists to be specified for verification. | ||
1139 | The CRLs should be in PEM format. | ||
1136 | .It Ar cert.pem ... | 1140 | .It Ar cert.pem ... |
1137 | One or more certificates of message recipients: used when encrypting a message. | 1141 | One or more certificates of message recipients: used when encrypting a message. |
1138 | .It Fl certfile Ar file | 1142 | .It Fl certfile Ar file |