Does AOT Compilation with GraalVM Protect Java Code from Decompilation?

0
9
Asked By CuriousCoder99 On

I've been wondering whether using GraalVM's Ahead-Of-Time (AOT) compilation, which produces machine code similar to what you'd get from a C binary, offers any real protection against decompilation of Java code or JAR files. If it does, does that mean traditional source code protection methods like obfuscation will become obsolete?

1 Answer

Answered By CodeNinja42 On

Not really. Reverse engineering can be done in any programming language, whether it's Java or assembly language. Even though it might be tougher, it's still possible to decipher it.

TechSavant77 -

True, but I feel that taking a binary apart is way more complex than just decompiling a JAR file. You can't just get the source back easily.

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.