RE: Retrieving SHG Password

The SLG puts the hashed password in the ‘salted_password’ member of the
User model that was generated.

If you want to get the original password text: you can’t. The password
is hashed (not encrypted), and that is not reversible to extract the
original password.

If your user forgets their password, all you can do is let them set a
new one, and the SLG has a bunch of code to send a ‘security token’ to
the user that is, in effect, a temporary password that expires fairly
quickly.


From: Nicholas Van W. [mailto:[email protected]]
Sent: Friday, November 25, 2005 2:30 PM
To: [email protected]
Subject: [Rails] Retrieving SHG Password

How does one retrive an encryped password generated with the Salted
Login Generator?

Thanks,
Nick