I'm generating SHA-512 encoded password keys with Python's Passlib
's command.
python -c "from passlib.hash import sha512_crypt; import getpass; print sha512_crypt.encrypt(getpass.getpass())"
This is per Ansible documentation: http://docs.ansible.com/ansible/faq.html#how-do-i-generate-crypted-passwords-for-the-user-module).
It prompts for a password, which I input. And then it returns the key.
Regardless of the password I input, all keys created begin with $6$rounds=...
What does this mean? Is this part of the key?