mirror of
https://github.com/Colton1skees/Dna
synced 2026-06-21 13:42:09 +00:00
29 lines
688 B
C#
29 lines
688 B
C#
using Dna.Binary;
|
|
using Dna.Reconstruction;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Dna
|
|
{
|
|
public interface IDna
|
|
{
|
|
/// <summary>
|
|
/// Class for parsing and manipulating binaries.
|
|
/// </summary>
|
|
public IBinary Binary { get; }
|
|
|
|
/// <summary>
|
|
/// Class for disassembling instructions.
|
|
/// </summary>
|
|
public BinaryDisassembler BinaryDisassembler { get; }
|
|
|
|
/// <summary>
|
|
/// Class for performing recursive descent disassembly.
|
|
/// </summary>
|
|
public ICfgReconstructor RecursiveDescent { get; }
|
|
}
|
|
}
|