Does anyone know how I'd run plain text passwords through the authlogic hasing algorithm without using rails? It looks like the default for authlogic is sha512.
I have a database of plain text passwords (yes, I know... bad) and need to import them into a new DB that uses the authlogic setup.
This ruby script is outside of rails so I don't want to use the rails based authlogic commands.
I have
require 'authlogic'
in the ruby script
I'm new to ruby modules but was trying to call the password method like:
Authlogic::ActsAsAuthentic::Password::Methods::InstanceMethods.password('password_here')
I got a 'no password method' error from that, but there is a 'password' method under that stack of modules in the authlogic code.
Thanks!