Class: Backup::Configuration::Encryptor::OpenSSL
- Defined in:
- lib/backup/configuration/encryptor/open_ssl.rb
Class Attribute Summary collapse
-
.base64 ⇒ Object
Determines whether the ‘base64’ should be used or not.
-
.password ⇒ Object
The password that’ll be used to encrypt the backup.
-
.salt ⇒ Object
Determines whether the ‘salt’ flag should be used.
Method Summary
Methods inherited from Base
Methods included from Helpers
#clear_defaults!, #getter_methods, #load_defaults!, #setter_methods
Class Attribute Details
.base64 ⇒ Object
Determines whether the ‘base64’ should be used or not
16 17 18 |
# File 'lib/backup/configuration/encryptor/open_ssl.rb', line 16 def base64 @base64 end |
.password ⇒ Object
The password that’ll be used to encrypt the backup. This password will be required to decrypt the backup later on.
12 13 14 |
# File 'lib/backup/configuration/encryptor/open_ssl.rb', line 12 def password @password end |
.salt ⇒ Object
Determines whether the ‘salt’ flag should be used
20 21 22 |
# File 'lib/backup/configuration/encryptor/open_ssl.rb', line 20 def salt @salt end |