hard
Single Answer
0Rick wants to make offline brute-force attacks against his password file very difficult for attackers. Which of the following is not a common technique to make passwords harder to crack?
Answer Options
A
Use of a salt
B
Use of a pepper
C
Use of a purpose-built password hashing algorithm
D
Encrypting password plain text using symmetric encryption
Correct Answer: D
Explanation
Retaining the actual password is not a best practice, and thus encrypting password plain text is not a common technique to make passwords harder to crack. Since the application would need the cryptographic key to read the passwords, anybody who had access to that key could decrypt the passwords. Using a salt, a pepper, and a cryptographic hashing algorithm designed for passwords are all common best practices to prevent offline brute-force attacks.