namespace BinaryObjectScanner.Interfaces
{
///
/// Check a generic file for protection
///
public interface IContentCheck
{
///
/// 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
/// String containing any protections found in the file
string CheckContents(string file, byte[] fileContent, bool includeDebug);
}
}