Hi,
I have form for registration and user register by AJAX
How to decrypt password like default SS register form?
Otherwise writing
How SS decrypt the password - I want in the same way decrypt the password for my form
Sorry for my bad English
This site requires you to update your browser. Your browsing experience maybe affected by not having the most up to date version.
Please use forum.silverstripe.org for any new questions
(announcement).
The forum archive will stick around, but will be read only.
You can also use our Slack channel
or StackOverflow to ask for help.
Check out our community overview for more options to contribute.
Hi,
I have form for registration and user register by AJAX
How to decrypt password like default SS register form?
Otherwise writing
How SS decrypt the password - I want in the same way decrypt the password for my form
Sorry for my bad English
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.