You cannot decrypt passwords. If you want to log a user in programmatically you can call
$data = array(
'Email' => 'youremail',
'Password' => 'password'
);
$member = MemberAuthenicator::authenication($data);
if($member) {
// you're logged in.
Posted to: Decrypt password like SS | Show Thread | Post Reply