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!, #load_defaults!

Class Attribute Details

.base64Object

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

.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

.password_fileObject

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

.saltObject

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