Files
fund-tracer/backend/app/utils/hash.py

6 lines
98 B
Python
Raw Normal View History

2026-03-11 16:28:04 +08:00
import hashlib
def sha256_file(data: bytes) -> str:
return hashlib.sha256(data).hexdigest()