omniauth / omniauth-identity

A simple login and password strategy for OmniAuth.
MIT License
345 stars 98 forks source link

AuthLogic compatability? #27

Closed singpolyma closed 4 years ago

singpolyma commented 12 years ago

We have an app that's currently using AuthLogic and we want to switch to Omniauth. We don't want users to have to reset their passwords after the switch. Would it be possible for us to set up Omniauth-Identity in a way that is compatible with the data stored in our DB by AuthLogic? We can reformat the tables or whatever, but obviously hashed passwords cannot be unhashed or rehashed :)

wafcio commented 12 years ago

Authologic has many of crypto providers (see: https://github.com/binarylogic/authlogic/tree/master/lib/authlogic/crypto_providers), Omiauth-identity is using BCrypt. So if you use BCrypt in Authologic it shouldn't be problem.