Class CodeSignatureGenericBlob

java.lang.Object
ghidra.app.util.bin.format.macho.commands.codesignature.CodeSignatureGenericBlob
All Implemented Interfaces:
StructConverter
Direct Known Subclasses:
CodeSignatureCodeDirectory, CodeSignatureSuperBlob

public class CodeSignatureGenericBlob extends Object implements StructConverter
Represents a CS_GenericBlob structure
See Also:
  • Field Details

    • magic

      protected int magic
    • length

      protected int length
    • base

      protected long base
  • Constructor Details

  • 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 this CodeSignatureGenericBlob data with data structures and comments
      Parameters:
      program - The Program to mark up
      address - The Address of the blob
      header - The Mach-O header
      monitor - A cancellable task monitor
      log - The log
      Throws:
      CancelledException - if the user cancelled the operation
    • toDataType

      public DataType toDataType() throws DuplicateNameException, IOException
      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 interface StructConverter
      Returns:
      returns a structure datatype representing the implementor of this interface
      Throws:
      DuplicateNameException - when a datatype of the same name already exists
      IOException
      See Also: