summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorinoguchi <>2019-07-04 13:55:20 +0000
committerinoguchi <>2019-07-04 13:55:20 +0000
commitd43e9bfa48dbc9b211c9208c9d1fc79a7eb185af (patch)
tree4ee4385f4ae5f0c87331e1baf7b8f8a3a3b444fb
parent610fcdf4ca7305e12aa0f965dbecf87cc33aac66 (diff)
downloadopenbsd-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.114
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
894The 898The
@@ -907,11 +911,15 @@ This directory must be a standard certificate directory,
907i.e. a hash of each subject name (using 911i.e. a hash of each subject name (using
908.Cm x509 Fl hash ) 912.Cm x509 Fl hash )
909should be linked to each certificate. 913should be linked to each certificate.
914.It Fl crlnumber
915Print the CRL number.
910.It Fl fingerprint 916.It Fl fingerprint
911Print the CRL fingerprint. 917Print the CRL fingerprint.
912.It Fl hash 918.It Fl hash
913Output a hash of the issuer name. 919Output a hash of the issuer name.
914This can be used to look up CRLs in a directory by issuer name. 920This can be used to look up CRLs in a directory by issuer name.
921.It Fl hash_old
922Output an old-style (MD5) hash of the issuer name.
915.It Fl in Ar file 923.It Fl in Ar file
916The input file to read from, or standard input if not specified. 924The 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.
922Output the 930Output the
923.Cm lastUpdate 931.Cm lastUpdate
924field. 932field.
933.It Fl nameopt Ar option
934Specify certificate name options.
925.It Fl nextupdate 935.It Fl nextupdate
926Output the 936Output the
927.Cm nextUpdate 937.Cm nextUpdate
@@ -934,6 +944,8 @@ The output file to write to, or standard output if not specified.
934The output format. 944The output format.
935.It Fl text 945.It Fl text
936Print the CRL in plain text. 946Print the CRL in plain text.
947.It Fl verify
948Verify the signature on the CRL.
937.El 949.El
938.Sh CRL2PKCS7 950.Sh CRL2PKCS7
939.nr nS 1 951.nr nS 1