mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-10 13:52:16 +00:00
14 lines
293 B
C#
14 lines
293 B
C#
namespace BurnOutSharp.ProtectionType
|
|
{
|
|
public class KeyLock
|
|
{
|
|
public static string CheckContents(string fileContent)
|
|
{
|
|
if (fileContent.Contains("KEY-LOCK COMMAND"))
|
|
return "Key-Lock (Dongle)";
|
|
|
|
return null;
|
|
}
|
|
}
|
|
}
|