I'm thinking of moving over to Omniauth 1.0 (using the "identity" strategy or gem) from Devise 1.4.7, my question is after doing all the code conversion, views etc, will the old passwords, those user accounts created with Devise, still work with the same passwords under OmniAuth?

I've done some research and both are using bcrypt, so I'm guessing "yes" they will work as before and users won't have to create new passwords. Or am I missing something crucial?

link|improve this question

70% accept rate
feedback

2 Answers

up vote 1 down vote accepted

Omniauth-identity is not directly compatible with the encrypted_password fields that Devise creates.

It is true that they both use bcrypt to hash the password, however Devise adds a "pepper" to the password. You can see the code that validates a password in the lib/omniauth/identity/secure_password.rb file, compared to Devise lib/devise/models/database_authenticatable.rb. Devise adds the pepper in addition to hashing with Bcrypt. The original omniauth-identity code would need to be changed to "pepper" your passwords in the same manner that Devise does (also using the same pepper value).

Here are a couple lines of code you might want to look at if you are going to monkey patch omniauth-identity. This snippit works for me, however changing the config.stretches parameter in the devise initializer might make this example not work for you (I had config.stretches = 10 in my devise config). Pepper comes from your devise initializer, encrypted_password is the string returned from the database for your user (created by devise). The result should return true if the password matches the hash.

pepper = "biglonguglystringfromyourdeviseinitializer"
encrypted_password = "$2a$10$iU.Br8ZClxuqldJt8Evl5OaBbHPJeBWbGV/1RoUsaNIZMBo8wHYTq" 

BCrypt::Password.new(encrypted_password) == "my_password_123#{pepper}"
 => true
link|improve this answer
Wow, thanks, this makes a lot of sense and I thought pepper was always used with bcrypt. Our moving towards Omniauth was put on hold, but this will come in useful in the near future. – Andrew Lank 49 mins ago
feedback

I dont think you are missing anything crucial at all. Both are using bcrypt. Awesome. But does that matter ? I think it really does.

Devise completes your authentication process w.r.t to a Model i.e. say users in this case.

Now your old users are already registered and confirmed, so that really wouldn't be an issue. The encrypted_password and hashed_password are still in the users table for the users to access.

What do you have to worry about ?

=> You probably have to worry about the authenticate_user! filter. I am guessing since they both use bcrypt the authentication wouldn't really be an issue. Perhaps if OmniAuth isn't, they the way it authenticates users would be completely different and your code will break apart.

Thats the only thing you will have to look after is what i feel.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.