Files
python-teos/common/tools.py
Sergi Delgado Segura 3c95c31bc8 Creates tools shared between client and server side
Includes check_txid_format that has been renamed. Close #12 #43
2019-12-06 13:20:58 +01:00

6 lines
137 B
Python

import re
def check_sha256_hex_format(value):
return isinstance(value, str) and re.search(r"^[0-9A-Fa-f]{64}$", value) is not None