# File lib/authlogic/crypto_providers/bcrypt.rb, line 65
        def cost_matches?(hash)
          hash = new_from_hash(hash)
          if hash.blank?
            false
          else
            hash.cost == cost
          end
        end