Now, I am reading Identity and Data Security for Web Development: Best Practices. In this book, sometimes text like this appears.
We then encrypt the password for the login attempt. (p40 Validating a Password Against a Hashed Value)
This chapter describes comparing user input passwords with the stored hash. So the 'encrypt' means creating hash from raw data by a cryptographic hash function in the text I think.
I want to know can I use both the word 'encrypt' and 'hash' for action as both creating hash that can't be decrypted from. Or can I use only 'encrypt' when encrypted value can be decrypted?