summaryrefslogtreecommitdiffstats
path: root/doc/man1/openssl-pkcs12.pod.in
diff options
context:
space:
mode:
authorDr. David von Oheimb <David.von.Oheimb@siemens.com>2020-05-11 15:41:08 +0200
committerDr. David von Oheimb <David.von.Oheimb@siemens.com>2020-07-28 09:17:56 +0200
commitef8980176d53d85ff96d913a647c01d07e144c5d (patch)
tree489ddabbd96ef452c16b004018390000e9f9fed4 /doc/man1/openssl-pkcs12.pod.in
parent846f96f821260ca83cc93bfa35207864b05abec5 (diff)
Deprecate -nodes in favor of -noenc in pkcs12 and req app
Reviewed-by: Dmitry Belyavskiy <beldmit@gmail.com> Reviewed-by: Shane Lontis <shane.lontis@oracle.com> (Merged from https://github.com/openssl/openssl/pull/12495)
Diffstat (limited to 'doc/man1/openssl-pkcs12.pod.in')
-rw-r--r--doc/man1/openssl-pkcs12.pod.in10
1 files changed, 8 insertions, 2 deletions
diff --git a/doc/man1/openssl-pkcs12.pod.in b/doc/man1/openssl-pkcs12.pod.in
index 8c819c56f8..3a97a81517 100644
--- a/doc/man1/openssl-pkcs12.pod.in
+++ b/doc/man1/openssl-pkcs12.pod.in
@@ -36,6 +36,7 @@ B<openssl> B<pkcs12>
[B<-camellia128>]
[B<-camellia192>]
[B<-camellia256>]
+[B<-noenc>]
[B<-nodes>]
[B<-iter> I<count>]
[B<-noiter>]
@@ -146,10 +147,14 @@ Use ARIA to encrypt private keys before outputting.
Use Camellia to encrypt private keys before outputting.
-=item B<-nodes>
+=item B<-noenc>
Don't encrypt the private keys at all.
+=item B<-nodes>
+
+This option is deprecated since OpenSSL 3.0; use B<-noenc> instead.
+
=item B<-nomacver>
Don't attempt to verify the integrity MAC before reading the file.
@@ -344,7 +349,7 @@ Output only client certificates to a file:
Don't encrypt the private key:
- openssl pkcs12 -in file.p12 -out file.pem -nodes
+ openssl pkcs12 -in file.p12 -out file.pem -noenc
Print some info about a PKCS#12 file:
@@ -368,6 +373,7 @@ L<ossl_store-file(7)>
=head1 HISTORY
The B<-engine> option was deprecated in OpenSSL 3.0.
+The <-nodes> option was deprecated in OpenSSL 3.0, too; use B<-noenc> instead.
=head1 COPYRIGHT