You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Traceback (most recent call last):
File "./keepasshttp.py", line 130, in
kp.get_logins("https://xxxxxxxxxxxxxxxxxxxxxxxx.xxx")
File "./keepasshttp.py", line 74, in get_logins
self._response_verfier(response)
File "./keepasshttp.py", line 46, in _response_verfier
generate_nonce = self._decrypt_data(base64.b64decode(response['Verifier']),
KeyError: 'Verifier'
Any ideas? Am i doing anything wrong?
The text was updated successfully, but these errors were encountered:
kp = KeePassHTTP()
# check if keepass is open
while not kp.is_running():
time.sleep(1)
#register key
kp.associate()
# key name
id = kp.id
# key
key = kp.key
check key and get login
kp.id = "example name"
kp.key = "randomaeskey"
#check key
if not kp.is_associate():
print 'key could not found in keepass'
login = kp.get_logins('https://example.com')
Hi,
If i run like this, it makes the association and retrieves the logins ok:
kp = KeePassHTTP();
kp.key = "**********************";
kp.associate();
kp.is_running();
kp.is_associate();
kp.get_logins("https://xxxxxxxxxxxxxxxxxxxxxxxx.xxx");
But i shouldn't run associate every time right?
So, now after the 1st association, i run like this:
kp = KeePassHTTP();
kp.key = "**********************";
kp.is_running();
kp.is_associate();
kp.get_logins("https://xxxxxxxxxxxxxxxxxxxxxxxx.xxx");
and i get this error:
Traceback (most recent call last):
File "./keepasshttp.py", line 130, in
kp.get_logins("https://xxxxxxxxxxxxxxxxxxxxxxxx.xxx")
File "./keepasshttp.py", line 74, in get_logins
self._response_verfier(response)
File "./keepasshttp.py", line 46, in _response_verfier
generate_nonce = self._decrypt_data(base64.b64decode(response['Verifier']),
KeyError: 'Verifier'
Any ideas? Am i doing anything wrong?
The text was updated successfully, but these errors were encountered: