Alignment-Lab-AI's picture
Upload folder using huggingface_hub
1bad0bb verified
raw
history blame contribute delete
294 Bytes
"""data handling helpers"""
import hashlib
def md5(to_hash: str, encoding: str = "utf-8") -> str:
try:
return hashlib.md5(to_hash.encode(encoding), usedforsecurity=False).hexdigest()
except TypeError:
return hashlib.md5(to_hash.encode(encoding)).hexdigest() # nosec