I have used the bcrypt library in my Ruby program. I noticed that the order of the equality operator seems to be important. Depending on which variable is left or right of the '==' I get a different result. Here is an example program:
require 'bcrypt'
my_pw = "pw1"
puts "This is my unhashed password: #{my_pw}"
hashed_pw = BCrypt::Password.create(my_pw)
puts "This is my hashed password: #{hashed_pw}"
20.times{print"-"}
puts
puts "my_pw == hashed_pw equals:"
if (my_pw == hashed_pw)
puts "TRUE"
else
puts "FALSE"
end
puts "hashed_pw == my_pw equals:"
if (hashed_pw == my_pw)
puts "TRUE"
else
puts "FALSE"
end
Regards schande
Yes, there is a difference.
my_pw == hashed_pw
calls the==
method on themy_pw
string and passeshashed_pw
as an argument. That means you are using theString#==
method. From the docs ofString#==
:Whereas
hashed_pw == my_pw
calls the==
method on an instance ofBCrypt::Password
and passesmy_pw
as an argument. From the docs ofBCrypt::Password#==
: