diff options
author | inoguchi <> | 2019-07-04 13:55:20 +0000 |
---|---|---|
committer | inoguchi <> | 2019-07-04 13:55:20 +0000 |
commit | d43e9bfa48dbc9b211c9208c9d1fc79a7eb185af (patch) | |
tree | 4ee4385f4ae5f0c87331e1baf7b8f8a3a3b444fb | |
parent | 610fcdf4ca7305e12aa0f965dbecf87cc33aac66 (diff) | |
download | openbsd-d43e9bfa48dbc9b211c9208c9d1fc79a7eb185af.tar.gz openbsd-d43e9bfa48dbc9b211c9208c9d1fc79a7eb185af.tar.bz2 openbsd-d43e9bfa48dbc9b211c9208c9d1fc79a7eb185af.zip |
Fix manual openssl(1) crl
- Add undocumented options -crlnumber, -hash_old, -nameopt and -verify
ok jmc@
-rw-r--r-- | src/usr.bin/openssl/openssl.1 | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/src/usr.bin/openssl/openssl.1 b/src/usr.bin/openssl/openssl.1 index c9f0895c99..7b04516831 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.103 2019/07/04 13:00:42 inoguchi Exp $ | 1 | .\" $OpenBSD: openssl.1,v 1.104 2019/07/04 13:55:20 inoguchi 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 | .\" |
@@ -878,17 +878,21 @@ but without cipher suite codes. | |||
878 | .Nm "openssl crl" | 878 | .Nm "openssl crl" |
879 | .Op Fl CAfile Ar file | 879 | .Op Fl CAfile Ar file |
880 | .Op Fl CApath Ar dir | 880 | .Op Fl CApath Ar dir |
881 | .Op Fl crlnumber | ||
881 | .Op Fl fingerprint | 882 | .Op Fl fingerprint |
882 | .Op Fl hash | 883 | .Op Fl hash |
884 | .Op Fl hash_old | ||
883 | .Op Fl in Ar file | 885 | .Op Fl in Ar file |
884 | .Op Fl inform Cm der | pem | 886 | .Op Fl inform Cm der | pem |
885 | .Op Fl issuer | 887 | .Op Fl issuer |
886 | .Op Fl lastupdate | 888 | .Op Fl lastupdate |
889 | .Op Fl nameopt Ar option | ||
887 | .Op Fl nextupdate | 890 | .Op Fl nextupdate |
888 | .Op Fl noout | 891 | .Op Fl noout |
889 | .Op Fl out Ar file | 892 | .Op Fl out Ar file |
890 | .Op Fl outform Cm der | pem | 893 | .Op Fl outform Cm der | pem |
891 | .Op Fl text | 894 | .Op Fl text |
895 | .Op Fl verify | ||
892 | .nr nS 0 | 896 | .nr nS 0 |
893 | .Pp | 897 | .Pp |
894 | The | 898 | The |
@@ -907,11 +911,15 @@ This directory must be a standard certificate directory, | |||
907 | i.e. a hash of each subject name (using | 911 | i.e. a hash of each subject name (using |
908 | .Cm x509 Fl hash ) | 912 | .Cm x509 Fl hash ) |
909 | should be linked to each certificate. | 913 | should be linked to each certificate. |
914 | .It Fl crlnumber | ||
915 | Print the CRL number. | ||
910 | .It Fl fingerprint | 916 | .It Fl fingerprint |
911 | Print the CRL fingerprint. | 917 | Print the CRL fingerprint. |
912 | .It Fl hash | 918 | .It Fl hash |
913 | Output a hash of the issuer name. | 919 | Output a hash of the issuer name. |
914 | This can be used to look up CRLs in a directory by issuer name. | 920 | This can be used to look up CRLs in a directory by issuer name. |
921 | .It Fl hash_old | ||
922 | Output an old-style (MD5) hash of the issuer name. | ||
915 | .It Fl in Ar file | 923 | .It Fl in Ar file |
916 | The input file to read from, or standard input if not specified. | 924 | The input file to read from, or standard input if not specified. |
917 | .It Fl inform Cm der | pem | 925 | .It Fl inform Cm der | pem |
@@ -922,6 +930,8 @@ Output the issuer name. | |||
922 | Output the | 930 | Output the |
923 | .Cm lastUpdate | 931 | .Cm lastUpdate |
924 | field. | 932 | field. |
933 | .It Fl nameopt Ar option | ||
934 | Specify certificate name options. | ||
925 | .It Fl nextupdate | 935 | .It Fl nextupdate |
926 | Output the | 936 | Output the |
927 | .Cm nextUpdate | 937 | .Cm nextUpdate |
@@ -934,6 +944,8 @@ The output file to write to, or standard output if not specified. | |||
934 | The output format. | 944 | The output format. |
935 | .It Fl text | 945 | .It Fl text |
936 | Print the CRL in plain text. | 946 | Print the CRL in plain text. |
947 | .It Fl verify | ||
948 | Verify the signature on the CRL. | ||
937 | .El | 949 | .El |
938 | .Sh CRL2PKCS7 | 950 | .Sh CRL2PKCS7 |
939 | .nr nS 1 | 951 | .nr nS 1 |