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 /// Byte array representing the file contents /// 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, byte[] fileContent, bool includeDebug, PortableExecutable pex); } }