diff --git a/de4dot.code/deobfuscators/CliSecure/CliSecureRtType.cs b/de4dot.code/deobfuscators/CliSecure/CliSecureRtType.cs index 3842e9ae..239fc14f 100644 --- a/de4dot.code/deobfuscators/CliSecure/CliSecureRtType.cs +++ b/de4dot.code/deobfuscators/CliSecure/CliSecureRtType.cs @@ -106,7 +106,7 @@ namespace de4dot.code.deobfuscators.CliSecure { var fieldTypes = new FieldTypes(type); if (!fieldTypes.exactly(requiredFields1) && !fieldTypes.exactly(requiredFields2) && !fieldTypes.exactly(requiredFields3)) continue; - if (!hasInitializeMethod(type, "_Initialize")) + if (!hasInitializeMethod(type, "_Initialize") && !hasInitializeMethod(type, "_Initialize64")) continue; stringDecrypterMethod = findStringDecrypterMethod(type);