diff options
author | inoguchi <> | 2019-06-07 02:32:22 +0000 |
---|---|---|
committer | inoguchi <> | 2019-06-07 02:32:22 +0000 |
commit | e8b669f2076c79bee41d4c83b46469fece481ee8 (patch) | |
tree | 81d1d440f27ca77fcc9d4b9d7f0c5c18ffe9afb0 /src/usr.bin/openssl/openssl.1 | |
parent | cc3b0029b71b5fced0a6c6099d13f1d7df3401be (diff) | |
download | openbsd-e8b669f2076c79bee41d4c83b46469fece481ee8.tar.gz openbsd-e8b669f2076c79bee41d4c83b46469fece481ee8.tar.bz2 openbsd-e8b669f2076c79bee41d4c83b46469fece481ee8.zip |
Convert openssl(1) gendsa to the newer style of option handling
- Adapt openssl(1) gendsa command to new option handling.
- Add lacking ciphers and passout description in openssl.1 manpage.
- Describe paramfile as argument in openssl.1 manpage.
ok bcook@
Diffstat (limited to 'src/usr.bin/openssl/openssl.1')
-rw-r--r-- | src/usr.bin/openssl/openssl.1 | 21 |
1 files changed, 14 insertions, 7 deletions
diff --git a/src/usr.bin/openssl/openssl.1 b/src/usr.bin/openssl/openssl.1 index d00d5a8e50..e5d123b449 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.100 2019/02/04 11:21:05 tb Exp $ | 1 | .\" $OpenBSD: openssl.1,v 1.101 2019/06/07 02:32:22 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: February 4 2019 $ | 113 | .Dd $Mdocdate: June 7 2019 $ |
114 | .Dt OPENSSL 1 | 114 | .Dt OPENSSL 1 |
115 | .Os | 115 | .Os |
116 | .Sh NAME | 116 | .Sh NAME |
@@ -1682,10 +1682,13 @@ Print debugging statistics about various aspects of the hash table. | |||
1682 | .Nm "openssl gendsa" | 1682 | .Nm "openssl gendsa" |
1683 | .Oo | 1683 | .Oo |
1684 | .Fl aes128 | aes192 | aes256 | | 1684 | .Fl aes128 | aes192 | aes256 | |
1685 | .Fl des | des3 | 1685 | .Fl camellia128 | camellia192 | camellia256 | |
1686 | .Fl des | des3 | | ||
1687 | .Fl idea | ||
1686 | .Oc | 1688 | .Oc |
1687 | .Op Fl out Ar file | 1689 | .Op Fl out Ar file |
1688 | .Op Ar paramfile | 1690 | .Op Fl passout Ar arg |
1691 | .Ar paramfile | ||
1689 | .nr nS 0 | 1692 | .nr nS 0 |
1690 | .Pp | 1693 | .Pp |
1691 | The | 1694 | The |
@@ -1703,15 +1706,19 @@ The options are as follows: | |||
1703 | .Bl -tag -width Ds | 1706 | .Bl -tag -width Ds |
1704 | .It Xo | 1707 | .It Xo |
1705 | .Fl aes128 | aes192 | aes256 | | 1708 | .Fl aes128 | aes192 | aes256 | |
1706 | .Fl des | des3 | 1709 | .Fl camellia128 | camellia192 | camellia256 | |
1710 | .Fl des | des3 | | ||
1711 | .Fl idea | ||
1707 | .Xc | 1712 | .Xc |
1708 | Encrypt the private key with the AES, DES, | 1713 | Encrypt the private key with the AES, CAMELLIA, DES, triple DES |
1709 | or the triple DES ciphers, respectively, before outputting it. | 1714 | or the IDEA ciphers, respectively, before outputting it. |
1710 | A pass phrase is prompted for. | 1715 | A pass phrase is prompted for. |
1711 | If none of these options are specified, no encryption is used. | 1716 | If none of these options are specified, no encryption is used. |
1712 | .It Fl out Ar file | 1717 | .It Fl out Ar file |
1713 | The output file to write to, | 1718 | The output file to write to, |
1714 | or standard output if not specified. | 1719 | or standard output if not specified. |
1720 | .It Fl passout Ar arg | ||
1721 | The output file password source. | ||
1715 | .It Ar paramfile | 1722 | .It Ar paramfile |
1716 | Specify the DSA parameter file to use. | 1723 | Specify the DSA parameter file to use. |
1717 | The parameters in this file determine the size of the private key. | 1724 | The parameters in this file determine the size of the private key. |