class Keepasshttp::KeyStore::External

Input the key and the id directly into the client so you can take care of the storage yourself.

Public Class Methods

new(key:, id:) click to toggle source
# File lib/keepasshttp/key_store.rb, line 10
def initialize(key:, id:)
  @params = { key: key, id: id }
end

Public Instance Methods

available?() click to toggle source
# File lib/keepasshttp/key_store.rb, line 22
def available?
  true
end
load() click to toggle source
# File lib/keepasshttp/key_store.rb, line 18
def load
  @params
end
save(*_args) click to toggle source
# File lib/keepasshttp/key_store.rb, line 14
def save(*_args)
  false
end