This shows you the differences between two versions of the page.
|
generate_hashed_password_string [2013/05/03 07:30] root |
generate_hashed_password_string [2013/11/14 09:27] (current) root |
||
|---|---|---|---|
| Line 7: | Line 7: | ||
| Output will be a md5 hashed string like this: | Output will be a md5 hashed string like this: | ||
| $1$t/Y0/ENi$PccO/XwuuZb4q/uhfh4Yf0 | $1$t/Y0/ENi$PccO/XwuuZb4q/uhfh4Yf0 | ||
| + | | ||
| + | For RHEL6 following python code can be used: | ||
| + | # python -c "import crypt; print crypt.crypt('secretpassword')" | ||
| + | Strongest possible hashing algorithm - SHA512 will be used | ||