How does Devise encrypt passwords? Is it something like:
crypt(crypt(password ) + salt)
or something alike?How do I change the way Devise encrypts passwords?
Well, I'm not trying to not use BCrypt. I'm trying to further encrypt the password than it already is. For example, maybe encrypt the password 100 times, or rearrange the way Devise encrypts the password (e.g. crypt(crypt(crypt(pass) + crypt(salt)) + crypt(crypt(password)))); something like that.
By the way, whats the default weight factor for Devise and how does one change it?
On Sunday, July 15, 2012 at 9:00 PM, Nistor Andrei wrote:
If