transcription-cost-usage-re.../backend/app/utils/hash_key.py

5 lines
131 B
Python
Raw Normal View History

import hashlib
def set_hash_key(key: str) -> str:
hash_key = hashlib.md5(f"{key}".encode()).hexdigest()
return hash_key