method

decrypt

decrypt(value)
public

No documentation available.

# File activesupport/lib/active_support/message_encryptor.rb, line 44
    def decrypt(value)
      ActiveSupport::Deprecation.warn "MessageEncryptor#decrypt is deprecated as it is not safe without a signature. "          "Please use MessageEncryptor#decrypt_and_verify instead."
      _decrypt(value)
    end