The Situation: I wish to securely store passwords (intentionally plural) used to connect to databases (again, intentionally plural).
The Problem: even if I hash the passwords they need to be de-hashed before being used to connect to the server so having that ability even in a different file if a hacker has access to the PHP code is only a matter of when not if they will determine how to convert the passwords to plain text.
Unless there is something I'm not yet aware of that addresses this issue?
- John