Sha256: c77a7b5604e847c56d87d3eed02055ed27216baea379043e20cca25bfb0c5a33
Contents?: true
Size: 780 Bytes
Versions: 4
Compression:
Stored size: 780 Bytes
Contents
# encoding: utf-8 module Backup module Configuration module Encryptor class OpenSSL < Base class << self ## # The password that'll be used to encrypt the backup. This # password will be required to decrypt the backup later on. attr_accessor :password ## # The password file used for encrypting the backup. This # password file will be required to decrypt the backup later # on. attr_accessor :password_file ## # Determines whether the 'base64' should be used or not attr_accessor :base64 ## # Determines whether the 'salt' flag should be used attr_accessor :salt end end end end end
Version data entries
4 entries across 4 versions & 2 rubygems