Sha256: cd6c61f2284746f67a51fb3a265f8637ebcae2d3946ba8198a90e650280ee18b

Contents?: true

Size: 572 Bytes

Versions: 24

Compression:

Stored size: 572 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

          ##
          # 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

24 entries across 24 versions & 3 rubygems

Version Path
backup-3.0.1.build.0 lib/backup/configuration/encryptor/open_ssl.rb
backup-3.0.1 lib/backup/configuration/encryptor/open_ssl.rb
backup-3.0.0.build.0 lib/backup/configuration/encryptor/open_ssl.rb
backup-3.0.0 lib/backup/configuration/encryptor/open_ssl.rb