chore: version and lint

This commit is contained in:
Vlad Stan 2025-11-13 12:07:15 +02:00
commit c7fa0931d2
4 changed files with 11 additions and 3 deletions

View file

@ -16,6 +16,7 @@ def get_shared_secret(privkey: str, pubkey: str):
x_coord = shared_point_bytes[1:33]
return x_coord
def decrypt_message(encoded_message: str, encryption_key) -> str:
encoded_data = encoded_message.split("?iv=")
if len(encoded_data) == 1: