How to protect compiled Java classes?

前端 未结 6 1115
-上瘾入骨i
-上瘾入骨i 2020-12-02 08:54

I know, many similar questions has been asked here. I am not asking if I can protect my compiled Java class - because obviously you will say \'no you can\'t\'. I am asking w

6条回答
  •  遥遥无期
    2020-12-02 09:14

    There are several methods:

    • Obfuscation
    • Software encryption (flawed)
    • Hardware encryption (nearly unbreakable but the performance hit is huge)
    • Native compilation

    all discussed in details in my article Protect Your Java Code - Through Obfuscators And Beyond

提交回复
热议问题