Is this the initial commit? I forgot

This commit is contained in:
2025-10-13 18:05:41 +01:00
parent af38770285
commit 25e0ec2c60
5 changed files with 37 additions and 7 deletions

5
functions.py Normal file
View File

@@ -0,0 +1,5 @@
import hashlib
def sha512_hash(Password):
HashedPassword = hashlib.sha512(Password.encode('utf-8')).hexdigest()
return HashedPassword