I am building a php application for which user needs to login first
and those login credentials will be same as wordpress login credentials
I am trying to connect the application with wordpress database table 'users' where we have 'user_login' and 'user_pass' and the problem for me is column 'user_pass' is encrypted with a prefix '$S$B' and I came to know that wordpress uses one side md5 encryption method which can not be decrypted . . .
now I want to validate password for my external application
I tried using this
$password = clean($_POST['password']);
$pass = "$P$B" .md5($password);
but this didn't work
can anyone please help me