Class: Firebug::FirebugMcrypt

Inherits:
Mcrypt
  • Object
show all
Defined in:
lib/firebug/crypto.rb

Overview

To prevent warnings about @opened being uninitialized.

Instance Method Summary collapse

Constructor Details

#initialize(algorithm, mode, key = nil, iv = nil, padding = nil) ⇒ FirebugMcrypt

rubocop:disable UncommunicativeMethodParamName



70
71
72
73
# File 'lib/firebug/crypto.rb', line 70

def initialize(algorithm, mode, key=nil, iv=nil, padding=nil) # rubocop:disable UncommunicativeMethodParamName
  @opened = nil
  super
end