Static functions for hexadecimal dumps.
str
|
|
str
|
|
str
|
hexline(cls,
data,
separator=' ' ,
width=None)
Dump a line of hexadecimal numbers from binary data. |
source code
|
|
str
|
hexblock(cls,
data,
address=None,
separator=' ' ,
width=8)
Dump a block of hexadecimal numbers from binary data. |
source code
|
|
str
|
hexblock_cb(cls,
callback,
data,
address=None,
width=16,
cb_args=( ) ,
cb_kwargs={ } )
Dump a block of binary data using a callback function to convert each
line of text. |
source code
|
|
str
|
hexblock_byte(cls,
data,
address=None,
separator=' ' ,
width=16)
Dump a block of hexadecimal BYTEs from binary data. |
source code
|
|
str
|
hexblock_word(cls,
data,
address=None,
separator=' ' ,
width=8)
Dump a block of hexadecimal WORDs from binary data. |
source code
|
|
str
|
hexblock_dword(cls,
data,
address=None,
separator=' ' ,
width=4)
Dump a block of hexadecimal DWORDs from binary data. |
source code
|
|
str
|
hexblock_qword(cls,
data,
address=None,
separator=' ' ,
width=2)
Dump a block of hexadecimal QWORDs from binary data. |
source code
|
|