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?

link|improve this question
feedback

1 Answer

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.