Skip to content

Instantly share code, notes, and snippets.

@chaicko
Last active June 11, 2022 15:11
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chaicko/cacc86ca84c786f15514 to your computer and use it in GitHub Desktop.
Save chaicko/cacc86ca84c786f15514 to your computer and use it in GitHub Desktop.
"""
HexByteConversion
Convert a byte string to it's hex representation for output or visa versa.
ByteToHex converts byte string "\xFF\xFE\x00\x01" to the string "FF FE 00 01"
HexToByte converts string "FF FE 00 01" to the byte string "\xFF\xFE\x00\x01"
"""
#-------------------------------------------------------------------------------
def ByteToHex( byteStr ):
"""
Convert a byte string to it's hex string representation e.g. for output.
"""
# Uses list comprehension which is a fractionally faster implementation than
# the alternative, more readable, implementation below
#
# hex = []
# for aChar in byteStr:
# hex.append( "%02X " % ord( aChar ) )
#
# return ''.join( hex ).strip()
return ''.join( [ "%02X " % ord( x ) for x in byteStr ] ).strip()
#-------------------------------------------------------------------------------
def HexToByte( hexStr ):
"""
Convert a string hex byte values into a byte string. The Hex Byte values may
or may not be space separated.
"""
# The list comprehension implementation is fractionally slower in this case
#
# hexStr = ''.join( hexStr.split(" ") )
# return ''.join( ["%c" % chr( int ( hexStr[i:i+2],16 ) ) \
# for i in range(0, len( hexStr ), 2) ] )
bytes = []
hexStr = ''.join( hexStr.split(" ") )
for i in range(0, len(hexStr), 2):
bytes.append( r'\x{0:02x}'.format( int( hexStr[i:i+2], 16 ) ) )
return ''.join( bytes )
#-------------------------------------------------------------------------------
# test data - different formats but equivalent data
__hexStr1 = "FFFFFF5F8121070C0000FFFFFFFF5F8129010B"
__hexStr2 = "FF FF FF 5F 81 21 07 0C 00 00 FF FF FF FF 5F 81 29 01 0B"
__byteStr = "\xFF\xFF\xFF\x5F\x81\x21\x07\x0C\x00\x00\xFF\xFF\xFF\xFF\x5F\x81\x29\x01\x0B"
if __name__ == "__main__":
print "\nHex To Byte and Byte To Hex Conversion"
print "Test 1 - ByteToHex - Passed: ", ByteToHex( __byteStr ) == __hexStr2
print "Test 2 - HexToByte - Passed: ", HexToByte( __hexStr1 ) == __byteStr
print "Test 3 - HexToByte - Passed: ", HexToByte( __hexStr2 ) == __byteStr
# turn a non-space separated hex string into a space separated hex string!
print "Test 4 - Combined - Passed: ", \
ByteToHex( HexToByte( __hexStr1 ) ) == __hexStr2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment