summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/usr.bin/openssl/openssl.187
1 files changed, 44 insertions, 43 deletions
diff --git a/src/usr.bin/openssl/openssl.1 b/src/usr.bin/openssl/openssl.1
index 52949f6bd2..d93a19b91d 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.37 2016/07/21 16:34:08 jmc Exp $ 1.\" $OpenBSD: openssl.1,v 1.38 2016/07/21 18:33:27 jmc 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.\"
@@ -263,14 +263,6 @@ of the structures.
263The input file; the default is standard input. 263The input file; the default is standard input.
264.It Fl inform Cm der | pem | txt 264.It Fl inform Cm der | pem | txt
265The input format. 265The input format.
266.Cm der
267.Pq Distinguished Encoding Rules
268is binary format and
269.Cm pem
270.Pq Privacy Enhanced Mail ,
271the default, is base64-encoded.
272.Cm txt
273is plain text.
274.It Fl length Ar number 266.It Fl length Ar number
275Number of bytes to parse; the default is until end of file. 267Number of bytes to parse; the default is until end of file.
276.It Fl noout 268.It Fl noout
@@ -971,25 +963,19 @@ Cipher suites using SHA1.
971.Op Fl fingerprint 963.Op Fl fingerprint
972.Op Fl hash 964.Op Fl hash
973.Op Fl in Ar file 965.Op Fl in Ar file
974.Op Fl inform Ar DER | PEM 966.Op Fl inform Cm der | pem
975.Op Fl issuer 967.Op Fl issuer
976.Op Fl lastupdate 968.Op Fl lastupdate
977.Op Fl nextupdate 969.Op Fl nextupdate
978.Op Fl noout 970.Op Fl noout
979.Op Fl out Ar file 971.Op Fl out Ar file
980.Op Fl outform Ar DER | PEM 972.Op Fl outform Cm der | pem
981.Op Fl text 973.Op Fl text
982.nr nS 0 974.nr nS 0
983.Pp 975.Pp
984The 976The
985.Nm crl 977.Nm crl
986command processes CRL files in DER or PEM format. 978command processes CRL files in DER or PEM format.
987.Pp
988.Cm DER
989is a DER-encoded CRL structure.
990.Cm PEM ,
991the default,
992is a base64-encoded version of the DER form with header and footer lines.
993The PEM CRL format uses the header and footer lines: 979The PEM CRL format uses the header and footer lines:
994.Bd -unfilled -offset indent 980.Bd -unfilled -offset indent
995-----BEGIN X509 CRL----- 981-----BEGIN X509 CRL-----
@@ -1015,7 +1001,7 @@ Output a hash of the issuer name.
1015This can be used to look up CRLs in a directory by issuer name. 1001This can be used to look up CRLs in a directory by issuer name.
1016.It Fl in Ar file 1002.It Fl in Ar file
1017The input file to read from, or standard input if not specified. 1003The input file to read from, or standard input if not specified.
1018.It Fl inform Cm DER | PEM 1004.It Fl inform Cm der | pem
1019The input format. 1005The input format.
1020.It Fl issuer 1006.It Fl issuer
1021Output the issuer name. 1007Output the issuer name.
@@ -1031,7 +1017,7 @@ field.
1031Don't output the encoded version of the CRL. 1017Don't output the encoded version of the CRL.
1032.It Fl out Ar file 1018.It Fl out Ar file
1033The output file to write to, or standard output if not specified. 1019The output file to write to, or standard output if not specified.
1034.It Fl outform Cm DER | PEM 1020.It Fl outform Cm der | pem
1035The output format. 1021The output format.
1036.It Fl text 1022.It Fl text
1037Print out the CRL in text form. 1023Print out the CRL in text form.
@@ -9010,37 +8996,32 @@ This means that any directories using the old form
9010must have their links rebuilt using 8996must have their links rebuilt using
9011.Ar c_rehash 8997.Ar c_rehash
9012or similar. 8998or similar.
9013.Sh NOTES 8999.Sh COMMON NOTATION
9014Several commands accept password arguments, typically using 9000Several commands share a common syntax,
9001as detailed below.
9002.Pp
9003Password arguments, typically specified using
9015.Fl passin 9004.Fl passin
9016and 9005and
9017.Fl passout 9006.Fl passout
9018for input and output passwords, respectively. 9007for input and output passwords,
9019These allow the password to be obtained from a variety of sources. 9008allow passwords to be obtained from a variety of sources.
9020Both of these options take a single argument whose format is described below. 9009Both of these options take a single argument, described below.
9021If no password argument is given and a password is required, 9010If no password argument is given and a password is required,
9022then the user is prompted to enter one: 9011then the user is prompted to enter one:
9023this will typically be read from the current terminal with echoing turned off. 9012this will typically be read from the current terminal with echoing turned off.
9024.Bl -tag -width "fd:number" 9013.Bl -tag -width "pass:password" -offset indent
9025.It Ar pass : Ns Ar password 9014.It Cm pass : Ns Ar password
9026The actual password is 9015The actual password is
9027.Ar password . 9016.Ar password .
9028Since the password is visible to utilities 9017Since the password is visible to utilities,
9029(like
9030.Xr ps 1
9031under
9032.Ux )
9033this form should only be used where security is not important. 9018this form should only be used where security is not important.
9034.It Ar env : Ns Ar var 9019.It Cm env : Ns Ar var
9035Obtain the password from the environment variable 9020Obtain the password from the environment variable
9036.Ar var . 9021.Ar var .
9037Since the environment of other processes is visible on certain platforms 9022Since the environment of other processes is visible,
9038(e.g.\& 9023this option should be used with caution.
9039.Xr ps 1 9024.It Cm file : Ns Ar path
9040under certain
9041.Ux
9042OSes) this option should be used with caution.
9043.It Ar file : Ns Ar path
9044The first line of 9025The first line of
9045.Ar path 9026.Ar path
9046is the password. 9027is the password.
@@ -9055,17 +9036,37 @@ for the output password.
9055.Ar path 9036.Ar path
9056need not refer to a regular file: 9037need not refer to a regular file:
9057it could, for example, refer to a device or named pipe. 9038it could, for example, refer to a device or named pipe.
9058.It Ar fd : Ns Ar number 9039.It Cm fd : Ns Ar number
9059Read the password from the file descriptor 9040Read the password from the file descriptor
9060.Ar number . 9041.Ar number .
9061This can be used to send the data via a pipe for example. 9042This can be used to send the data via a pipe, for example.
9062.It Ar stdin 9043.It Cm stdin
9063Read the password from standard input. 9044Read the password from standard input.
9064.El 9045.El
9046.Pp
9047File formats,
9048typically specified using
9049.Fl inform
9050and
9051.Fl outform ,
9052indicate the type of file being read from
9053or the file format to write.
9054The argument is case insensitive.
9055.Pp
9056.Bl -tag -width Ds -offset indent -compact
9057.It Cm der
9058Distinguished Encoding Rules (DER)
9059is a binary format.
9060.It Cm pem
9061Privacy Enhanced Mail (PEM)
9062is base64-encoded.
9063.It Cm txt
9064Plain ASCII text.
9065.El
9065.Sh ENVIRONMENT 9066.Sh ENVIRONMENT
9066The following environment variables affect the execution of 9067The following environment variables affect the execution of
9067.Nm openssl : 9068.Nm openssl :
9068.Bl -tag -width "OPENSSL_CONFXXX" 9069.Bl -tag -width "/etc/ssl/openssl.cnf"
9069.It Ev OPENSSL_CONF 9070.It Ev OPENSSL_CONF
9070The location of the master configuration file. 9071The location of the master configuration file.
9071.El 9072.El