Class: Outback::EncryptionProcessor

Inherits:
Processor show all
Defined in:
lib/outback/encryption_processor.rb

Instance Attribute Summary

Attributes inherited from Processor

#backup_name

Instance Method Summary collapse

Methods inherited from Processor

#initialize, #process!

Methods included from Logging

#logger

Methods included from Configurable

#attr_setter, included

Constructor Details

This class inherits a constructor from Outback::Processor

Instance Method Details

#cipherObject



9
10
11
# File 'lib/outback/encryption_processor.rb', line 9

def cipher
  @cipher ||= 'aes-256-cbc'
end

#to_sObject



13
14
15
# File 'lib/outback/encryption_processor.rb', line 13

def to_s
  "encryption:#{cipher}"
end