winglian's picture
refactor utils.data module for line count linter (#1476)
e0fcef4 unverified
raw
history blame
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