TO_DO: FIX ISSUE WITH REGISTERING

This commit is contained in:
florianuhlig
2025-10-03 00:52:43 +02:00
parent 740fe629b3
commit 823ea8cfc4
5 changed files with 210 additions and 20 deletions

View File

@@ -1,4 +1,5 @@
from hashlib import sha512
def get_password_hash(password):
password = password.strip()
return sha512(password.encode('utf-8')).hexdigest()