Files
ChatBot/useful/hash.py
2025-10-03 00:13:44 +02:00

4 lines
116 B
Python

from hashlib import sha512
def get_password_hash(password):
return sha512(password.encode('utf-8')).hexdigest()