CAS-005 · Question #4
A developer needs to improve the cryptographic strength of a password-storage component in a web application without completely replacing the crypto-module. Which of the following is the most…
The correct answer is E. Key stretching. Key stretching enhances the security of stored passwords by applying computationally intensive algorithms (e.g., bcrypt, PBKDF2) to make brute-force attacks more difficult, without replacing the underlying crypto-module.ks.
Question
A developer needs to improve the cryptographic strength of a password-storage component in a web application without completely replacing the crypto-module. Which of the following is the most appropriate technique?
Options
- AKey splitting
- BKey escrow
- CKey rotation
- DKey encryption
- EKey stretching
How the community answered
(34 responses)- A3% (1)
- B12% (4)
- C6% (2)
- D3% (1)
- E76% (26)
Explanation
Key stretching enhances the security of stored passwords by applying computationally intensive algorithms (e.g., bcrypt, PBKDF2) to make brute-force attacks more difficult, without replacing the underlying crypto-module.ks.
Community Discussion
No community discussion yet for this question.