| passwd - compute password hashes |
| The B<passwd> 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 file>, from stdin for |
| option B<-stdin>, and from the command line otherwise. |
| The Unix standard algorithm B<crypt> and the MD5-based B<apr1> algorithm |
| Use the B<crypt> algorithm (default). |
| Use the B<apr1> algorithm. |
| Read passwords from I<file>. |
| Read passwords from B<stdin>. |
| Don't output warnings when passwords given at the command line are truncated. |
| In the output list, prepend the cleartext password and a TAB character |
| B<openssl passwd -crypt -salt xx password> prints B<xxj31ZMTZzkVA>. |
| B<openssl passwd -apr1 -salt xxxxxxxx password> prints B<$apr1$xxxxxxxx$dxHfLAsjHkDRmG83UXe8K0>. |