summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorinoguchi <>2019-07-16 12:14:30 +0000
committerinoguchi <>2019-07-16 12:14:30 +0000
commitfb7ad8d6f2bd7672b90318cb2edad987f0c734b5 (patch)
tree5926ad893d81f958d5125cf2b0013f514e92e95f
parentbc8d7db132e8ba050dd6707a72cea5d3b6976e03 (diff)
downloadopenbsd-fb7ad8d6f2bd7672b90318cb2edad987f0c734b5.tar.gz
openbsd-fb7ad8d6f2bd7672b90318cb2edad987f0c734b5.tar.bz2
openbsd-fb7ad8d6f2bd7672b90318cb2edad987f0c734b5.zip
Fix typo and -keyform argument in openssl(1) manual
- s/outputed/outputted/ - s/trused/trusted/ - add der as argument and describe pem is the default
-rw-r--r--src/usr.bin/openssl/openssl.114
1 files changed, 8 insertions, 6 deletions
diff --git a/src/usr.bin/openssl/openssl.1 b/src/usr.bin/openssl/openssl.1
index 6e83385966..142ee9bbfc 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.111 2019/07/12 10:21:08 inoguchi Exp $ 1.\" $OpenBSD: openssl.1,v 1.112 2019/07/16 12:14:30 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.\"
@@ -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 12 2019 $ 113.Dd $Mdocdate: July 16 2019 $
114.Dt OPENSSL 1 114.Dt OPENSSL 1
115.Os 115.Os
116.Sh NAME 116.Sh NAME
@@ -3126,7 +3126,7 @@ option is not used, it will generate a new RSA private
3126key using information specified in the configuration file. 3126key using information specified in the configuration file.
3127.It Fl newhdr 3127.It Fl newhdr
3128Add the word NEW to the PEM file header and footer lines 3128Add the word NEW to the PEM file header and footer lines
3129on the outputed request. 3129on the outputted request.
3130Some software and CAs need this. 3130Some software and CAs need this.
3131.It Fl newkey Ar arg 3131.It Fl newkey Ar arg
3132Create a new certificate request and a new private key. 3132Create a new certificate request and a new private key.
@@ -4422,7 +4422,7 @@ debugging purposes.
4422.Op Fl inform Cm der | pem | smime 4422.Op Fl inform Cm der | pem | smime
4423.Op Fl inkey Ar file 4423.Op Fl inkey Ar file
4424.Op Fl issuer_checks 4424.Op Fl issuer_checks
4425.Op Fl keyform Cm pem 4425.Op Fl keyform Cm der | pem
4426.Op Fl md Ar digest 4426.Op Fl md Ar digest
4427.Op Fl noattr 4427.Op Fl noattr
4428.Op Fl nocerts 4428.Op Fl nocerts
@@ -4597,8 +4597,10 @@ or
4597file. 4597file.
4598When signing, 4598When signing,
4599this option can be used multiple times to specify successive keys. 4599this option can be used multiple times to specify successive keys.
4600.It Fl keyform Cm pem 4600.It Fl keyform Cm der | pem
4601Input private key format. 4601Input private key format.
4602The default is
4603.Cm pem .
4602.It Fl md Ar digest 4604.It Fl md Ar digest
4603The digest algorithm to use when signing or resigning. 4605The digest algorithm to use when signing or resigning.
4604If not present then the default digest algorithm for the signing key is used 4606If not present then the default digest algorithm for the signing key is used
@@ -5011,7 +5013,7 @@ Either this option or
5011.Fl CApath 5013.Fl CApath
5012must be specified. 5014must be specified.
5013.It Fl CApath Ar trusted_cert_path 5015.It Fl CApath Ar trusted_cert_path
5014The directory containing the trused CA certificates of the client. 5016The directory containing the trusted CA certificates of the client.
5015See 5017See
5016.Nm verify 5018.Nm verify
5017for additional details. 5019for additional details.