method

decrypt_and_verify

Importance_0
v7.0.0 - Show latest stable - 0 notes - Class: Encryptor
decrypt_and_verify(*args, on_rotation: @on_rotation, **options) public

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/messages/rotator.rb, line 21
        def decrypt_and_verify(*args, on_rotation: @on_rotation, **options)
          super
        rescue MessageEncryptor::InvalidMessage, MessageVerifier::InvalidSignature
          run_rotations(on_rotation) { |encryptor| encryptor.decrypt_and_verify(*args, **options) } || raise
        end
Register or log in to add new notes.