From cc8c5460540f53f51f28e6c6aeed45e3af2743b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juhani=20Krekel=C3=A4?= Date: Sun, 5 Jan 2020 13:46:53 +0200 Subject: [PATCH] Add a message telling how to proceed when hash matches --- kishib.py | 1 + 1 file changed, 1 insertion(+) diff --git a/kishib.py b/kishib.py index 4505219..2010b20 100644 --- a/kishib.py +++ b/kishib.py @@ -190,6 +190,7 @@ def verify(client_pubkey, server_pubkey): continue if secrets.compare_digest(own_hash, other_hash): + print('Hash matches. You can now type \'yes\' on the other end') return else: error('Could not transfer the keys')