mirror of
https://github.com/aljazceru/python-teos.git
synced 2025-12-17 22:24:23 +01:00
6 lines
137 B
Python
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
|