Hi,
I am using “Authlogic” for user authentication.
I have a excel file into which I have user deatils. I have to migrate
those details to the “users” table. For that I have written a script
which goes through the excel file and store the data into “users” table.
My code is like this:-
user=User.new
user.password=“password”
user.password_confirmation=“password”
user.save
I have added following code in user.rb-
acts_as_authentic do |c|
c.transition_from_restful_authentication = true
end
I am quite worried about the password created by the authlogic.
It is encrypting the password like this:-
“9b2dcddea0f2ecab44c195b36035cab8da14e719b51c696e704f885f29f8310939fb980d11434c545b43cfa9390b1e6b3d5dbb82f97289da9a1740eadda6b5ae”
Is it right? Or I am missing something.
Can anyone please help me out for this?
Thanks,
Tushar G.