当我创建用户(在 sinatra 中)时,我会这样做
require 'Bcrypt'
post '/users' do
@user = User.new(params[:user])
@user.password_hash = BCrypt::Password.create(params[:password])
p @user.password_hash == params[:password] # this prints TRUE!
@user.save!
session[:user_id] = @user.id
redirect '/'
end
然后当我尝试验证同一个用户时,我得到了这个
post '/sessions' do
@user = User.find_by_email(params[:email])
p @user.id # prints 14
p @user.password_hash # prints correct hash
p @user.password_hash.class # prints String
p BCrypt::Password.new(@user.password_hash).class # prints BCrypt::Password
p params[:password] # prints "clown123"
p BCrypt::Password.new(@user.password_hash) == params[:password] # prints FALSE!
# redirect '/'
end
什么破了?BCrypt 文档(不使用数据库)中给出的示例每次都有效。我的数据库(postgres)中的某些东西会改变密码哈希吗?
使用最新版本的 bcrypt 和 ruby 1.9.3(我也尝试过 ruby 2.0 及更高版本,结果相同)