We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Exercise 13-3, step 3 says to use this code:
"{{ '{{ passw }}' | password_hash('sha512', 'myrandomsalt') }}"
but it does not work. The following code does work. "{{ passwd | password_hash('sha512', 'myrandomsalt') }}"
The text was updated successfully, but these errors were encountered:
The following works fine for me: msg: "{{ '{{ passw }}' | password_hash('sha512','myrandomsalt') }}"
msg: "{{ '{{ passw }}' | password_hash('sha512','myrandomsalt') }}"
Your variables between the first and second lines have different names. passw vs. passwd
passw
passwd
Sorry, something went wrong.
I think that's a typo in the post.
No branches or pull requests
Exercise 13-3, step 3 says to use this code:
"{{ '{{ passw }}' | password_hash('sha512', 'myrandomsalt') }}"
but it does not work. The following code does work.
"{{ passwd | password_hash('sha512', 'myrandomsalt') }}"
The text was updated successfully, but these errors were encountered: