Added exception when trying to remember an invalid public key

pull/4/head
Mark Qvist 2021-05-20 22:30:54 +02:00
rodzic d68cfaa8f7
commit ad67c553d7
1 zmienionych plików z 5 dodań i 2 usunięć

Wyświetl plik

@ -50,7 +50,10 @@ class Identity:
@staticmethod
def remember(packet_hash, destination_hash, public_key, app_data = None):
Identity.known_destinations[destination_hash] = [time.time(), packet_hash, public_key, app_data]
if len(public_key) != Identity.KEYSIZE//8:
raise TypeError("Can't remember "+RNS.prettyhexrep(destination_hash)+", the public key size of "+str(len(public_key))+" is not valid.", RNS.LOG_ERROR)
else:
Identity.known_destinations[destination_hash] = [time.time(), packet_hash, public_key, app_data]
@staticmethod
@ -339,7 +342,7 @@ class Identity:
"""
try:
with open(path, "wb") as key_file:
key_file.write(self.prv_bytes)
key_file.write(self.get_public_key())
return True
return False
except Exception as e: