Decrypt and verify a message.
We need to verify the message
in order to avoid padding attacks. Reference:
www.limited-entropy.com/padding-oracle-attacks/.
# File activesupport/lib/active_support/message_encryptor.rb, line 158
def decrypt_and_verify(data, purpose: nil, **)
_decrypt(verifier.verify(data), purpose)
end