using BinaryObjectScanner.Wrappers;
namespace BinaryObjectScanner.Interfaces
{
///
/// Check a New Executable (NE) for protection
///
public interface INewExecutableCheck
{
///
/// Check a path for protections based on file contents
///
/// File to check for protection indicators
/// NewExecutable representing the read-in file
/// True to include debug data, false otherwise
/// String containing any protections found in the file
string CheckNewExecutable(string file, NewExecutable nex, bool includeDebug);
}
}