search for: aunthentication

Displaying 1 result from an estimated 1 matches for "aunthentication".

Did you mean: athentication
2010 Feb 04
2
Encrypt a user password using "Authlogic"
Hi, I have a csv file which have the user detail. I want to migrate this information into the "users" table. My application use "Authlogic" for user aunthentication so I have to encrypt the password during migration. I have written the script which is reading the csv file and adds the record into "users" table, it is working fine. But I am not able to encrypt the password. I am doing like this:- user=User.find(1) user.password="password" us...