Python Library Stringtools
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.

csp.build_frame.py 171B

123456789
  1. import sys
  2. sys.path.append('../..')
  3. import stringtools
  4. data = b'message'
  5. print(stringtools.hexlify(data))
  6. print(stringtools.hexlify(stringtools.csp.build_frame(data)))