You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
433 B
23 lines
433 B
try:
|
|
import binascii
|
|
except ImportError:
|
|
print("SKIP")
|
|
raise SystemExit
|
|
|
|
for x in (
|
|
b"0001020304050607",
|
|
b"08090a0b0c0d0e0f",
|
|
b"7f80ff",
|
|
b"313233344142434461626364",
|
|
):
|
|
print(binascii.unhexlify(x))
|
|
|
|
try:
|
|
a = binascii.unhexlify(b"0") # odd buffer length
|
|
except ValueError:
|
|
print("ValueError")
|
|
|
|
try:
|
|
a = binascii.unhexlify(b"gg") # digit not hex
|
|
except ValueError:
|
|
print("ValueError")
|
|
|