With first webui

This commit is contained in:
florianuhlig
2025-10-03 00:13:44 +02:00
parent 4f663eb8a5
commit 981cd94d6f
6 changed files with 231 additions and 12 deletions

View File

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