Добавлены публичные ключи для заверения что собеседника не подменили, также добавлена аватарка

This commit is contained in:
none
2024-02-07 21:35:12 +03:00
parent 287f34f256
commit 1355450706
3 changed files with 160 additions and 55 deletions
+6
View File
@@ -0,0 +1,6 @@
import hashlib
def hash(string):
string = str(string)
hashed = hashlib.sha256(str.encode(string)).hexdigest()
return hashed