tags:

views:

108

answers:

2

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

+3  A: 

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

See also:

scompt.com
A: 

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.

Durandal