Class CodeSignatureGenericBlob
java.lang.Object
ghidra.app.util.bin.format.macho.commands.codesignature.CodeSignatureGenericBlob
- All Implemented Interfaces:
StructConverter
- Direct Known Subclasses:
CodeSignatureCodeDirectory
,CodeSignatureSuperBlob
Represents a CS_GenericBlob structure
- See Also:
-
Field Summary
-
Constructor Summary
ConstructorDescriptionCodeSignatureGenericBlob
(BinaryReader reader) Creates a newCodeSignatureGenericBlob
-
Method Summary
Modifier and TypeMethodDescriptionint
Returns the length.int
getMagic()
Returns the magic.void
markup
(Program program, Address address, MachHeader header, TaskMonitor monitor, MessageLog log) Marks up thisCodeSignatureGenericBlob
data with data structures and commentsReturns a structure datatype representing the contents of the implementor of this interface.
-
Field Details
-
magic
protected int magic -
length
protected int length -
base
protected long base
-
-
Constructor Details
-
CodeSignatureGenericBlob
Creates a newCodeSignatureGenericBlob
- Parameters:
reader
- ABinaryReader
positioned at the start of the structure- Throws:
IOException
- if there was an IO-related problem creating the structure
-
-
Method Details
-
getMagic
public int getMagic()Returns the magic.- Returns:
- the magic
-
getLength
public int getLength()Returns the length.- Returns:
- the length
-
markup
public void markup(Program program, Address address, MachHeader header, TaskMonitor monitor, MessageLog log) throws CancelledException Marks up thisCodeSignatureGenericBlob
data with data structures and comments- Parameters:
program
- TheProgram
to mark upaddress
- TheAddress
of the blobheader
- The Mach-O headermonitor
- A cancellable task monitorlog
- The log- Throws:
CancelledException
- if the user cancelled the operation
-
toDataType
Description copied from interface:StructConverter
Returns a structure datatype representing the contents of the implementor of this interface.For example, given:
class A { int foo; double bar; }
The return value should be a structure data type with two data type components; an INT and a DOUBLE. The structure should contain field names and, if possible, field comments.
- Specified by:
toDataType
in interfaceStructConverter
- Returns:
- returns a structure datatype representing the implementor of this interface
- Throws:
DuplicateNameException
- when a datatype of the same name already existsIOException
- if an IO-related error occurs- See Also:
-