Files
mai-bot/src/chat/knowledge/utils/hash.py
2025-06-07 13:46:04 +08:00

9 lines
193 B
Python

import hashlib
def get_sha256(string: str) -> str:
"""获取字符串的SHA256值"""
sha256 = hashlib.sha256()
sha256.update(string.encode("utf-8"))
return sha256.hexdigest()