5 lines
131 B
Python
5 lines
131 B
Python
|
import hashlib
|
||
|
|
||
|
def set_hash_key(key: str) -> str:
|
||
|
hash_key = hashlib.md5(f"{key}".encode()).hexdigest()
|
||
|
return hash_key
|