MCPcopy Create free account
hub / github.com/qilingframework/qiling / get_bytes_size

Function get_bytes_size

qltui.py:522–531  ·  view source on GitHub ↗

Ask for bytes size

()

Source from the content-addressed store, hash-verified

520
521
522def get_bytes_size():
523 """
524 Ask for bytes size
525 """
526 answer = questionary.text("bytes_size:", validate=IntValidator).ask()
527
528 if re.match(HEX_REGEX, str(answer)):
529 return int(answer, 16)
530
531 return int(answer)
532
533
534def ask_value():

Callers 1

hookFunction · 0.85

Calls 1

matchMethod · 0.80

Tested by

no test coverage detected