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.
-
.password_file ⇒ Object
The password file used for encrypting the backup.
-
.salt ⇒ Object
Determines whether the ‘salt’ flag should be used.
Method Summary
Methods inherited from Base
Methods included from Helpers
#clear_defaults!, #load_defaults!
Class Attribute Details
.base64 ⇒ Object
Determines whether the ‘base64’ should be used or not
22 23 24 |
# File 'lib/backup/configuration/encryptor/open_ssl.rb', line 22 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 |
.password_file ⇒ Object
The password file used for encrypting the backup. This password file will be required to decrypt the backup later on.
18 19 20 |
# File 'lib/backup/configuration/encryptor/open_ssl.rb', line 18 def password_file @password_file end |
.salt ⇒ Object
Determines whether the ‘salt’ flag should be used
26 27 28 |
# File 'lib/backup/configuration/encryptor/open_ssl.rb', line 26 def salt @salt end |