Class: Firebug::FirebugMcrypt
- Inherits:
-
Mcrypt
- Object
- Mcrypt
- Firebug::FirebugMcrypt
- Defined in:
- lib/firebug/crypto.rb
Overview
To prevent warnings about @opened being uninitialized.
Instance Method Summary collapse
-
#initialize(algorithm, mode, key = nil, iv = nil, padding = nil) ⇒ FirebugMcrypt
constructor
rubocop:disable UncommunicativeMethodParamName.
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 |