summaryrefslogtreecommitdiffstats
path: root/doc/man1/openssl-passwd.pod.in
diff options
context:
space:
mode:
authorPauli <paul.dale@oracle.com>2020-11-04 22:34:52 +1000
committerPauli <paul.dale@oracle.com>2020-11-12 08:35:47 +1000
commitc87a7f31a3db97376d764583ad5ee4a76db2cbef (patch)
treef600b840e5a7833b24f2047ba87e61618a3dd81b /doc/man1/openssl-passwd.pod.in
parent93c87f745d5694b829d5b52d371d478b063a1fba (diff)
apps/passwd: remove the -crypt option.
Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/13313)
Diffstat (limited to 'doc/man1/openssl-passwd.pod.in')
-rw-r--r--doc/man1/openssl-passwd.pod.in19
1 files changed, 7 insertions, 12 deletions
diff --git a/doc/man1/openssl-passwd.pod.in b/doc/man1/openssl-passwd.pod.in
index 30159e35bf..8e1f6f2de7 100644
--- a/doc/man1/openssl-passwd.pod.in
+++ b/doc/man1/openssl-passwd.pod.in
@@ -9,7 +9,6 @@ openssl-passwd - compute password hashes
B<openssl passwd>
[B<-help>]
-[B<-crypt>]
[B<-1>]
[B<-apr1>]
[B<-aixmd5>]
@@ -34,9 +33,8 @@ This command computes the hash of a password typed at
run-time or the hash of each password in a list. The password list is
taken from the named file for option B<-in>, from stdin for
option B<-stdin>, or from the command line, or from the terminal otherwise.
-The Unix standard algorithm B<-crypt> and the MD5-based BSD password
-algorithm B<-1>, its Apache variant B<-apr1>, and its AIX variant are
-available.
+The MD5-based BSD password algorithm B<-1>, its Apache variant B<-apr1>,
+and its AIX variant are available.
=head1 OPTIONS
@@ -46,13 +44,9 @@ available.
Print out a usage message.
-=item B<-crypt>
-
-Use the B<crypt> algorithm (default).
-
=item B<-1>
-Use the MD5 based BSD password algorithm B<1>.
+Use the MD5 based BSD password algorithm B<1> (default).
=item B<-apr1>
@@ -107,9 +101,6 @@ When the B<-table> option is used, reverse the order of cleartext and hash.
=head1 EXAMPLES
- % openssl passwd -crypt -salt xx password
- xxj31ZMTZzkVA
-
% openssl passwd -1 -salt xxxxxxxx password
$1$xxxxxxxx$UYCIxa628.9qXjpQCjM4a.
@@ -119,6 +110,10 @@ When the B<-table> option is used, reverse the order of cleartext and hash.
% openssl passwd -aixmd5 -salt xxxxxxxx password
xxxxxxxx$8Oaipk/GPKhC64w/YVeFD/
+=head1 HISTORY
+
+The B<-crypt> option was removed in OpenSSL 3.0.
+
=head1 COPYRIGHT
Copyright 2000-2020 The OpenSSL Project Authors. All Rights Reserved.