开发者

Encrypt Java MIDP Application

开发者 https://www.devze.com 2023-01-25 02:16 出处:网络
How to encrypt java MIDP application? I need to encrypt the application, not obfuscate, I already use ProGuard to obfusc开发者_开发问答ate my application, but the classes files still can be decompiled

How to encrypt java MIDP application? I need to encrypt the application, not obfuscate, I already use ProGuard to obfusc开发者_开发问答ate my application, but the classes files still can be decompiled.

I have tried using ClassGuard to encrypt my Mobile Aplication, but ClassGuard does not support MIDP application. It only support java desktop application.


Encryption, in addition to obfuscation, just makes a program harder to hack.

It 's like having police standing outside your vault door. It doesn 't make it impossible; it just makes it harder.

Consequently, when you obfuscate you still have class files, though the class files might be a.class, and b.class and c.class they are still present in the jar and you can decompile them easily.

With encryption like, for instance, classguard you have a.classx, b.classx, and c.classx in the jar. This means that you have to go through the additional step of dumping the class from the running application. Not something everyone can do, and certainly harder then just unzipping the class from the jar file.

In my opinion, security should be applied in layers; Class encryption is just another layer that makes it harder to hack a java program.

0

精彩评论

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