Skip to main content

This site requires you to update your browser. Your browsing experience maybe affected by not having the most up to date version.

We've moved the forum!

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.

General Questions /

General questions about getting started with SilverStripe that don't fit in any of the categories above.

Moderators: martimiz, Sean, Ed, biapar, Willr, Ingo, swaiba

Decrypt password like SS


Go to End


2 Posts   724 Views

Avatar
Craftnet

Community Member, 58 Posts

1 May 2013 at 10:51pm

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

Avatar
Willr

Forum Moderator, 5523 Posts

3 May 2013 at 9:06pm

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.