class Encryption::Configuration::Symmetric
Public Class Methods
new()
click to toggle source
Calls superclass method
Encryption::Configuration::Base::new
# File lib/configuration/symmetric.rb, line 5 def initialize super @config = { :key => nil, :iv => "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", :cipher => 'aes-256-cbc' } end