NGEN 处理 .NET 应用程序是否有助于保护其免受逆向工程影响?如果没有我什么时候使用它?
如果 Ngen 不保护我的应用程序,我什么时候可以合理地期望在我的职业生涯中使用此应用程序?
If Ngen doesn't protect my application, when would I reasonably expect to use this application in my career?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Jeffrey Richter 在他的书中写了一篇很棒的文章,我不知道第三版是否有它,但这是他的一篇很棒的文章 在 2002 年写过关于 Ngen'ing 的文章,至今仍然具有相关性。
亮点:
Jeffrey Richter wrote a great piece in his book, I don't know if the third release has it, but here is a great piece he wrote in 2002 about Ngen'ing which is still relevant.
Highlights:
NGen 仅用于编译 IL 以提高性能。您可能需要研究代码混淆以保护应用程序免受逆向工程的影响。
NGen is only for compiling the IL for performance increases. You would want to look into code obfuscation for protecting the app from reverse engineering.
加载速度才是它真正有用的地方。也就是说,它可以实现高达 2000%(是的,这是正确的)的改进。
编辑:
请注意,JIT 化的代码通常比 NGEN 化的代码更快。
Loading speed is all it is really useful for. That said, it can make up to a 2000% (yes that is correct) improvement.
Edit:
Please note that JIT'ed code normally tends to be faster than NGEN'ed code.