防止解压 jar 文件
我不希望任何人提取 my.jar 文件。我在 my.jar 中混淆了我的代码,但我希望任何人都无法提取它。我也知道 Jar_Signing 对我没有帮助。 如何?
I don't want anyone extract my.jar file. I so obfuscated my code in my.jar but I want anyone can't extract it . I also know Jar_Signing don't help me.
how?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不可能。如果没有人能提取出来,JVM 如何才能提取出类文件呢?
Not possible. If nobody could extract it, how would the JVM be able to get the class files out?
您可以尝试使用 \x0 作为前缀重命名类,并损坏类的 CRC32。 jvm 不会检查 CRC32,但一旦您尝试使用标准工具提取 jar,它将阻止提取。
You could try to rename the classes with \x0 as prefix and corrupt the CRC32 of your classes. CRC32 isnt getting checked by the jvm but once you try to extract you jar with standard tools it will prevent the extraction.