diff options
author | Bodo Möller <bodo@openssl.org> | 2000-02-10 22:50:52 +0100 |
---|---|---|
committer | Bodo Möller <bodo@openssl.org> | 2000-02-10 22:50:52 +0100 |
commit | bb325c7d6a724f66615965478d670456e1c922d2 (patch) | |
tree | 3e9cd7977ae35e828d1decf71e40e8224bd3caa5 /doc | |
parent | 16 * 8 = 128. (diff) | |
download | openssl-bb325c7d6a724f66615965478d670456e1c922d2.tar.xz openssl-bb325c7d6a724f66615965478d670456e1c922d2.zip |
'passwd' tool.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/apps/passwd.pod | 50 |
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 |