change: Call Obfuscation doesn't obfuscate calling method of EncryptionService

before-split
walon 2025-05-19 13:07:29 +08:00
parent a40a45e8aa
commit 305a56b3db
1 changed files with 5 additions and 0 deletions

View File

@ -271,6 +271,11 @@ namespace Obfuz.ObfusPasses.CallObfus
{
return true;
}
if (typeDef.Name == "EncryptionService`1")
{
return true;
}
// special handle
// don't proxy call for List<T>.Enumerator GetEnumerator()
if (methodName == "GetEnumerator")