instance method
key
Ruby on Rails 8.0.4
Since v5.2.8.1Signature
key()
Returns the encryption key, first trying the environment variable specified by env_key, then trying the key file specified by key_path. If raise_if_missing_key is true, raises MissingKeyError if the environment variable is not set and the key file does not exist.
Source
# File activesupport/lib/active_support/encrypted_file.rb, line 52
def key
read_env_key || read_key_file || handle_missing_key
end
Defined in activesupport/lib/active_support/encrypted_file.rb line 52
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveSupport::EncryptedFile