I'm planning to embed groovy/beanshell in my app but I'm concerned about protecting the script and any dynamically generated classes from been viewed and modified by users to access my app codes. The script contain proprietary algorithms. How do I prevent this?
|
feedback
|
|
You can compile groovy down to byte code http://groovy.codehaus.org/Compiling+Groovy. This will provide you with the same level of protection that you would get from any other compiled java. If that isn't enough then you might want to look at an obsfucator like this http://proguard.sourceforge.net/ which will make understanding the decompiled code much more difficult. | |||
|
feedback
|