Add helper password hash

This commit is contained in:
Esa Kataja
2025-05-05 16:17:21 +03:00
parent b05c8570a1
commit 32eda86f4f
+5
View File
@@ -0,0 +1,5 @@
from hashlib import md5
def hash_password(password: str) -> str:
return md5(password.encode()).hexdigest()