method

digest_matches_data?

Importance_0
v7.1.3.4 - Show latest stable - 0 notes - Class: ActiveSupport::MessageVerifier
digest_matches_data?(digest, data) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activesupport/lib/active_support/message_verifier.rb, line 352
      def digest_matches_data?(digest, data)
        data.present? && digest.present? && ActiveSupport::SecurityUtils.secure_compare(digest, generate_digest(data))
      end
Register or log in to add new notes.