summaryrefslogtreecommitdiffstats
path: root/doc/apps/passwd.pod
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2000-02-10 21:50:52 +0000
committerBodo Möller <bodo@openssl.org>2000-02-10 21:50:52 +0000
commitbb325c7d6a724f66615965478d670456e1c922d2 (patch)
tree3e9cd7977ae35e828d1decf71e40e8224bd3caa5 /doc/apps/passwd.pod
parent0a751d8ce801323864f7db8e1a0a915e02bb38cd (diff)
'passwd' tool.
Diffstat (limited to 'doc/apps/passwd.pod')
-rw-r--r--doc/apps/passwd.pod50
1 files changed, 50 insertions, 0 deletions
diff --git a/doc/apps/passwd.pod b/doc/apps/passwd.pod
new file mode 100644
index 0000000000..0df9252981
--- /dev/null
+++ b/doc/apps/passwd.pod
@@ -0,0 +1,50 @@
+=pod
+
+=head1 NAME
+
+passwd - compute password hashes
+
+=head1 SYNOPSIS
+
+B<openssl passwd>
+[B<-crypt>]
+[B<-salt string>]
+[B<-quiet>]
+[B<-table>]
+{B<password>}
+
+=head1 DESCRIPTION
+
+The B<passwd> command computes the hashes of a list of passwords
+passed on the command line, or the hash of a password typed at run-time.
+Currently only the Unix standard algorithm B<crypt>
+is implemented.
+
+=head1 OPTIONS
+
+=over 4
+
+=item B<-crypt>
+
+Use the B<crypt> algorithm (default).
+
+=item B<-salt string>
+
+Use the specified salt.
+
+=item B<-quiet>
+
+Don't output warnings when passwords are truncated.
+
+=item B<-table>
+
+In the output list, prepend the cleartext password and a TAB character
+to each password hash.
+
+=back
+
+=head1 EXAMPLE
+
+B<openssl passwd -salt xx password> prints B<xxj31ZMTZzkVA>.
+
+=cut