|
|
|
|
|
by thwarted
6314 days ago
|
|
Are you making a distinction between storing for verification and storing for use? The right way to store passwords when you use them to verify authentication is to hash (twitter verifying a login). The right way to store passwords when you need to use them to gain access on behalf of a user is to encrypt them (any third party "twitter application"). I ask because the first google result for "bcrypt" is http://bcrypt.sourceforge.net/ which is distinctly not hashing, where as the second one is for a ruby library interface to bcrypt hashing. |
|
Second, the whole fuss about Twitter and OAuth is the degree to which people are not OK with giving their passwords to other people to use.