开发者

Encrypt jar executable internally in java swing application [duplicate]

开发者 https://www.devze.com 2023-01-01 23:29 出处:网络
This question already has answers here: Closed 10 years ago. Possible Duplicate: Creating non-rever开发者_JAVA百科se-engineerable Java programs
This question already has answers here: Closed 10 years ago.

Possible Duplicate:

Creating non-rever开发者_JAVA百科se-engineerable Java programs

How to encrypt jar executable internally made in java swing application? [It must be executable without decrypting it.]


You probably want obfuscation instead of encryption. Here's what google thinks:

  • http://www.yworks.com/en/products_yguard_about.html
  • http://proguard.sourceforge.net/

See also:

  • 150653
  • 2242055
  • 149937


Don't bother trying to encrypt classes. This is doomed to be utterly uselss as some form of protection. Since at some point, the JVM needs to be fed your decrypted classes, anyone interested in taking a look at them can intercept your already decrypted classes there. See this Article for a detailed technical explanation how any class encrypting can be circumvented easily.

0

精彩评论

暂无评论...
验证码 换一张
取 消