diff options
author | inoguchi <> | 2019-07-09 11:19:05 +0000 |
---|---|---|
committer | inoguchi <> | 2019-07-09 11:19:05 +0000 |
commit | 0771cc4c395c98a51af84fc3cb9b261d5c046a6d (patch) | |
tree | ccafe42701f000ae83b26a4463a197f33d3483e8 | |
parent | 5cab45655b851e6901a4900a0643067cb8112303 (diff) | |
download | openbsd-0771cc4c395c98a51af84fc3cb9b261d5c046a6d.tar.gz openbsd-0771cc4c395c98a51af84fc3cb9b261d5c046a6d.tar.bz2 openbsd-0771cc4c395c98a51af84fc3cb9b261d5c046a6d.zip |
Fix manual openssl(1) genrsa
Add missing -camellia*/-idea description to genrsa section.
ok jmc@
-rw-r--r-- | src/usr.bin/openssl/openssl.1 | 20 |
1 files changed, 14 insertions, 6 deletions
diff --git a/src/usr.bin/openssl/openssl.1 b/src/usr.bin/openssl/openssl.1 index 624c29d0aa..90ff100111 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.108 2019/07/08 14:15:12 inoguchi Exp $ | 1 | .\" $OpenBSD: openssl.1,v 1.109 2019/07/09 11:19:05 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 8 2019 $ | 113 | .Dd $Mdocdate: July 9 2019 $ |
114 | .Dt OPENSSL 1 | 114 | .Dt OPENSSL 1 |
115 | .Os | 115 | .Os |
116 | .Sh NAME | 116 | .Sh NAME |
@@ -1859,7 +1859,10 @@ Print the private/public key in plain text. | |||
1859 | .nr nS 1 | 1859 | .nr nS 1 |
1860 | .Nm "openssl genrsa" | 1860 | .Nm "openssl genrsa" |
1861 | .Op Fl 3 | f4 | 1861 | .Op Fl 3 | f4 |
1862 | .Op Fl aes128 | aes192 | aes256 | des | des3 | 1862 | .Oo |
1863 | .Fl aes128 | aes192 | aes256 | camellia128 | | ||
1864 | .Fl camellia192 | camellia256 | des | des3 | idea | ||
1865 | .Oc | ||
1863 | .Op Fl out Ar file | 1866 | .Op Fl out Ar file |
1864 | .Op Fl passout Ar arg | 1867 | .Op Fl passout Ar arg |
1865 | .Op Ar numbits | 1868 | .Op Ar numbits |
@@ -1884,9 +1887,14 @@ The options are as follows: | |||
1884 | .It Fl 3 | f4 | 1887 | .It Fl 3 | f4 |
1885 | The public exponent to use, either 3 or 65537. | 1888 | The public exponent to use, either 3 or 65537. |
1886 | The default is 65537. | 1889 | The default is 65537. |
1887 | .It Fl aes128 | aes192 | aes256 | des | des3 | 1890 | .It Xo |
1888 | Encrypt the private key with the AES, DES, | 1891 | .Fl aes128 | aes192 | aes256 | |
1889 | or the triple DES ciphers, respectively, before outputting it. | 1892 | .Fl camellia128 | camellia192 | camellia256 | |
1893 | .Fl des | des3 | | ||
1894 | .Fl idea | ||
1895 | .Xc | ||
1896 | Encrypt the private key with the AES, CAMELLIA, DES, triple DES | ||
1897 | or the IDEA ciphers, respectively, before outputting it. | ||
1890 | If none of these options are specified, no encryption is used. | 1898 | If none of these options are specified, no encryption is used. |
1891 | If encryption is used, a pass phrase is prompted for, | 1899 | If encryption is used, a pass phrase is prompted for, |
1892 | if it is not supplied via the | 1900 | if it is not supplied via the |