Class: ActiveSupport::EncryptedFile
- Defined in:
- lib/active_support/encrypted_file.rb
Direct Known Subclasses
Defined Under Namespace
Classes: MissingContentError, MissingKeyError
Constant Summary collapse
- CIPHER =
"aes-128-gcm"
Instance Attribute Summary collapse
-
#content_path ⇒ Object
readonly
Returns the value of attribute content_path.
-
#env_key ⇒ Object
readonly
Returns the value of attribute env_key.
-
#key_path ⇒ Object
readonly
Returns the value of attribute key_path.
-
#raise_if_missing_key ⇒ Object
readonly
Returns the value of attribute raise_if_missing_key.
Class Method Summary collapse
Instance Method Summary collapse
- #change(&block) ⇒ Object
-
#initialize(content_path:, key_path:, env_key:, raise_if_missing_key:) ⇒ EncryptedFile
constructor
A new instance of EncryptedFile.
- #key ⇒ Object
- #read ⇒ Object
- #write(contents) ⇒ Object
Constructor Details
#initialize(content_path:, key_path:, env_key:, raise_if_missing_key:) ⇒ EncryptedFile
Returns a new instance of EncryptedFile.
31 32 33 34 |
# File 'lib/active_support/encrypted_file.rb', line 31 def initialize(content_path:, key_path:, env_key:, raise_if_missing_key:) @content_path, @key_path = Pathname.new(content_path), Pathname.new(key_path) @env_key, @raise_if_missing_key = env_key, raise_if_missing_key end |
Instance Attribute Details
#content_path ⇒ Object (readonly)
Returns the value of attribute content_path.
29 30 31 |
# File 'lib/active_support/encrypted_file.rb', line 29 def content_path @content_path end |
#env_key ⇒ Object (readonly)
Returns the value of attribute env_key.
29 30 31 |
# File 'lib/active_support/encrypted_file.rb', line 29 def env_key @env_key end |
#key_path ⇒ Object (readonly)
Returns the value of attribute key_path.
29 30 31 |
# File 'lib/active_support/encrypted_file.rb', line 29 def key_path @key_path end |
#raise_if_missing_key ⇒ Object (readonly)
Returns the value of attribute raise_if_missing_key.
29 30 31 |
# File 'lib/active_support/encrypted_file.rb', line 29 def raise_if_missing_key @raise_if_missing_key end |
Class Method Details
.generate_key ⇒ Object
24 25 26 |
# File 'lib/active_support/encrypted_file.rb', line 24 def self.generate_key SecureRandom.hex(ActiveSupport::MessageEncryptor.key_len(CIPHER)) end |
Instance Method Details
#change(&block) ⇒ Object
53 54 55 |
# File 'lib/active_support/encrypted_file.rb', line 53 def change(&block) writing read, &block end |
#key ⇒ Object
36 37 38 |
# File 'lib/active_support/encrypted_file.rb', line 36 def key read_env_key || read_key_file || handle_missing_key end |
#read ⇒ Object
40 41 42 43 44 45 46 |
# File 'lib/active_support/encrypted_file.rb', line 40 def read if !key.nil? && content_path.exist? decrypt content_path.binread else raise MissingContentError, content_path end end |