Flowdock
method

resolve_verifier

Importance_0
v6.0.0 - Show latest stable - 0 notes - Class: ActiveSupport::MessageEncryptor
resolve_verifier() 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_encryptor.rb, line 219
      def resolve_verifier
        if aead_mode?
          NullVerifier
        else
          MessageVerifier.new(@sign_secret || @secret, digest: @digest, serializer: NullSerializer)
        end
      end
Register or log in to add new notes.