4 lines
116 B
Python
4 lines
116 B
Python
from hashlib import sha512
|
|
|
|
def get_password_hash(password):
|
|
return sha512(password.encode('utf-8')).hexdigest() |