Description
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?