Method: Sym::App::PrivateKey::Decryptor#initialize
- Defined in:
- lib/sym/app/private_key/decryptor.rb
#initialize(encrypted_key, input_handler, password_cache) ⇒ Decryptor
Returns a new instance of Decryptor.
12 13 14 15 16 17 |
# File 'lib/sym/app/private_key/decryptor.rb', line 12 def initialize(encrypted_key, input_handler, password_cache) self.encrypted_key = encrypted_key self.input_handler = input_handler self.password_cache = password_cache @cache_checked = false end |