├── .gitattributes ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── TrinitySeal ├── FodyWeavers.xml ├── FodyWeavers.xsd ├── HashPatch.cs ├── ProgramVariables.cs ├── Properties │ └── AssemblyInfo.cs ├── Seal.cs ├── SealColours.cs ├── Security.cs ├── Tools.cs ├── TrinitySeal.csproj ├── UserInfo.cs └── packages.config ├── TrinitySealPatcher.sln └── TrinitySealPatcher ├── App.config ├── Program.cs ├── Properties └── AssemblyInfo.cs └── TrinitySealPatcher.csproj /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETFuscator/TrinitySealPatcher/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETFuscator/TrinitySealPatcher/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETFuscator/TrinitySealPatcher/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETFuscator/TrinitySealPatcher/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETFuscator/TrinitySealPatcher/HEAD/README.md -------------------------------------------------------------------------------- /TrinitySeal/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETFuscator/TrinitySealPatcher/HEAD/TrinitySeal/FodyWeavers.xml -------------------------------------------------------------------------------- /TrinitySeal/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETFuscator/TrinitySealPatcher/HEAD/TrinitySeal/FodyWeavers.xsd -------------------------------------------------------------------------------- /TrinitySeal/HashPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETFuscator/TrinitySealPatcher/HEAD/TrinitySeal/HashPatch.cs -------------------------------------------------------------------------------- /TrinitySeal/ProgramVariables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETFuscator/TrinitySealPatcher/HEAD/TrinitySeal/ProgramVariables.cs -------------------------------------------------------------------------------- /TrinitySeal/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETFuscator/TrinitySealPatcher/HEAD/TrinitySeal/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TrinitySeal/Seal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETFuscator/TrinitySealPatcher/HEAD/TrinitySeal/Seal.cs -------------------------------------------------------------------------------- /TrinitySeal/SealColours.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETFuscator/TrinitySealPatcher/HEAD/TrinitySeal/SealColours.cs -------------------------------------------------------------------------------- /TrinitySeal/Security.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETFuscator/TrinitySealPatcher/HEAD/TrinitySeal/Security.cs -------------------------------------------------------------------------------- /TrinitySeal/Tools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETFuscator/TrinitySealPatcher/HEAD/TrinitySeal/Tools.cs -------------------------------------------------------------------------------- /TrinitySeal/TrinitySeal.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETFuscator/TrinitySealPatcher/HEAD/TrinitySeal/TrinitySeal.csproj -------------------------------------------------------------------------------- /TrinitySeal/UserInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETFuscator/TrinitySealPatcher/HEAD/TrinitySeal/UserInfo.cs -------------------------------------------------------------------------------- /TrinitySeal/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETFuscator/TrinitySealPatcher/HEAD/TrinitySeal/packages.config -------------------------------------------------------------------------------- /TrinitySealPatcher.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETFuscator/TrinitySealPatcher/HEAD/TrinitySealPatcher.sln -------------------------------------------------------------------------------- /TrinitySealPatcher/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETFuscator/TrinitySealPatcher/HEAD/TrinitySealPatcher/App.config -------------------------------------------------------------------------------- /TrinitySealPatcher/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETFuscator/TrinitySealPatcher/HEAD/TrinitySealPatcher/Program.cs -------------------------------------------------------------------------------- /TrinitySealPatcher/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETFuscator/TrinitySealPatcher/HEAD/TrinitySealPatcher/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TrinitySealPatcher/TrinitySealPatcher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETFuscator/TrinitySealPatcher/HEAD/TrinitySealPatcher/TrinitySealPatcher.csproj --------------------------------------------------------------------------------