mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-08-20 21:52:21 +02:00
18 lines
691 B
Python
18 lines
691 B
Python
"""The official list of format hints that text renderers and plugins can rely upon existing within the framework
|
|
|
|
These hints allow a plugin to indicate how they'd like a particular column's data to be represented.
|
|
|
|
Text renderers should attempt to honour all hints provided in this module where possible
|
|
"""
|
|
|
|
class Bin(int):
|
|
"""A class to indicate that the integer value should be represented as a binary value"""
|
|
|
|
|
|
class Hex(int):
|
|
"""A class to indicate that the integer value should be represented as a hexidecimal value"""
|
|
|
|
|
|
class HexBytes(int):
|
|
"""A class to indicate that the bytes should be display in an extended format showing hexadecimal and ascii printable display"""
|