Sha256: 607874e92f732a7e293c4c615595dc4318fde648a873ec78dea4b951f8b9ed0f
Contents?: true
Size: 790 Bytes
Versions: 1
Compression:
Stored size: 790 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
backup-3.0.20 | lib/backup/configuration/encryptor/open_ssl.rb |