如何在 confuserex 中使用密码混淆符号名称?
How to obfuscate symbol names with a password in confuserex?
例如,在 Eazfuscator.Net 中,您可以使用
混淆符号名称
[assembly: Obfuscation(Feature = "encrypt symbol names with password XPASSWORD", Exclude = false)]
但我想知道如何使用 ConfuserEx 做到这一点(不管它是否包含代码或应用程序图形用户界面本身)。
答案在 ConfuserEx Wiki Name Protection
示例:
<protection id="rename">
<argument name="mode" value="reversible" />
<argument name="password" value="This password is secret" />
<argument name="renameArgs" value="true" />
<argument name="renEnum" value="true" />
<argument name="flatten" value="true" />
<argument name="forceRen" value="false" />
<argument name="renPublic" value="false" />
<argument name="renPdb" value="true" />
<argument name="renXaml" value="true" />
</protection>
重要的部分是 mode
,因为 reversible
和 password
不需要解释。所有这些都在 .crproj 文件中。
但是如果你想在 class 中使用直接混淆声明,那么使用 Declarative Obfuscation
例如,在 Eazfuscator.Net 中,您可以使用
混淆符号名称[assembly: Obfuscation(Feature = "encrypt symbol names with password XPASSWORD", Exclude = false)]
但我想知道如何使用 ConfuserEx 做到这一点(不管它是否包含代码或应用程序图形用户界面本身)。
答案在 ConfuserEx Wiki Name Protection
示例:
<protection id="rename">
<argument name="mode" value="reversible" />
<argument name="password" value="This password is secret" />
<argument name="renameArgs" value="true" />
<argument name="renEnum" value="true" />
<argument name="flatten" value="true" />
<argument name="forceRen" value="false" />
<argument name="renPublic" value="false" />
<argument name="renPdb" value="true" />
<argument name="renXaml" value="true" />
</protection>
重要的部分是 mode
,因为 reversible
和 password
不需要解释。所有这些都在 .crproj 文件中。
但是如果你想在 class 中使用直接混淆声明,那么使用 Declarative Obfuscation