module ActiveSupport::Messages::Rotator::Encryptor
Public Instance Methods
decrypt_and_verify(*args, on_rotation: nil, **options)
click to toggle source
Calls superclass method
# File lib/active_support/messages/rotator.rb, line 19 def decrypt_and_verify(*args, on_rotation: nil, **options) super rescue MessageEncryptor::InvalidMessage, MessageVerifier::InvalidSignature run_rotations(on_rotation) { |encryptor| encryptor.decrypt_and_verify(*args, options) } || raise end