using BurnOutSharp.ExecutableType.Microsoft.PE; namespace BurnOutSharp { // TODO: This should either include an override that takes a Stream instead of the byte[] internal interface IPEContentCheck { /// /// Check a path for protections based on file contents /// /// File to check for protection indicators /// True to include debug data, false otherwise /// PortableExecutable representing the read-in file /// String containing any protections found in the file string CheckPEContents(string file, PortableExecutable pex, bool includeDebug); } }