Method: Chamber::Types::Secured#initialize

Defined in:
lib/chamber/types/secured.rb

#initialize(decryption_keys: ::Chamber.configuration.decryption_keys, encryption_keys: ::Chamber.configuration.encryption_keys) ⇒ Secured

Returns a new instance of Secured.



26
27
28
29
30
31
32
# File 'lib/chamber/types/secured.rb', line 26

def initialize(decryption_keys: ::Chamber.configuration.decryption_keys,
               encryption_keys: ::Chamber.configuration.encryption_keys)
  self.decryption_keys = decryption_keys
  self.encryption_keys = encryption_keys

  super()
end