TASK 4 – PASSWORD HASHING

- Plain passwords are never stored
- password_hash uses bcrypt internally
- password_verify safely compares hash
- Prevents rainbow table attacks
- Industry standard authentication practice

Key line:
'I never store plain passwords; I hash them and verify securely during authentication.'
