Encrypt jar executable internally in java swing application [duplicate]
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.
精彩评论