I'm trying to find a secure way to encrypt passwords submitted from a browser, handled in a PHP file and saved to an MySQL database.
If I put the encryption algorithm in PHP script, it can be viewed.
Is it possible to call a compiled file (DLL file in Windows) from a PHP script? If so, I could put the encryption algorithm there. Can MySQL encrypt?
Any help would be appreciated.