php Programming Glossary: stored_password
(PHP) How to use crypt() with CRYPT_BLOWFISH? http://stackoverflow.com/questions/2235897/php-how-to-use-crypt-with-crypt-blowfish quoted from the docs doesn't seem to make much sense stored_password fetch_password user if crypt _REQUEST 'password' stored_password.. fetch_password user if crypt _REQUEST 'password' stored_password stored_password note that crypt automatically extracts the salt.. user if crypt _REQUEST 'password' stored_password stored_password note that crypt automatically extracts the salt and alogrithm..
Am I using PHP's crypt() function correctly? http://stackoverflow.com/questions/3820977/am-i-using-phps-crypt-function-correctly get stored crypt pass and salt2 from the database stored_password 'somethingfromdatabase' stored_salt2 'somethingelsefromdatabase'.. crypt password if crypt input_password . stored_salt2 stored_password stored_password authenticated return true else return false.. if crypt input_password . stored_salt2 stored_password stored_password authenticated return true else return false else return false..
|