# File lib/authlogic/crypto_providers/bcrypt.rb, line 59
        def matches?(hash, *tokens)
          hash = new_from_hash(hash)
          return false if hash.blank?
          hash == join_tokens(tokens)
        end