加密設定
提供 EncryptedFile
上的便利方法,用於存取以加密 YAML 儲存的值。
值可透過 Hash
方法 (例如 fetch
與 dig
) 或動態存取器方法存取,類似於 OrderedOptions
。
my_config = ActiveSupport::EncryptedConfiguration.new(...)
my_config.read # => "some_secret: 123\nsome_namespace:\n another_secret: 456"
my_config[:some_secret]
# => 123
my_config.some_secret
# => 123
my_config.dig(:some_namespace, :another_secret)
# => 456
my_config.some_namespace.another_secret
# => 456
my_config.fetch(:foo)
# => KeyError
my_config.foo!
# => KeyError
命名空間
- 類別 ActiveSupport::EncryptedConfiguration::InvalidContentError
- 類別 ActiveSupport::EncryptedConfiguration::InvalidKeyError
方法
類別公開方法
new(config_path:, key_path:, env_key:, raise_if_missing_key:) 連結
# File activesupport/lib/active_support/encrypted_configuration.rb, line 54 def initialize(config_path:, key_path:, env_key:, raise_if_missing_key:) super content_path: config_path, key_path: key_path, env_key: env_key, raise_if_missing_key: raise_if_missing_key @config = nil @options = nil end
執行個體公開方法
config() 連結
以 Hash
的型態傳回已解密的內容,並將金鑰表示成符號。
my_config = ActiveSupport::EncryptedConfiguration.new(...)
my_config.read # => "some_secret: 123\nsome_namespace:\n another_secret: 456"
my_config.config
# => { some_secret: 123, some_namespace: { another_secret: 789 } }
read() 連結
讀取檔案並傳回已解密的內容。請參閱 EncryptedFile#read
。