Class: Backup::Configuration::Encryptor::OpenSSL

Inherits:
Base
  • Object
show all
Defined in:
lib/backup/configuration/encryptor/open_ssl.rb

Class Attribute Summary collapse

Method Summary

Methods inherited from Base

defaults

Methods included from Helpers

#clear_defaults!, #getter_methods, #load_defaults!, #setter_methods

Class Attribute Details

.base64Object

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

.passwordObject

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

.saltObject

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