Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Are there tools for code obfuscation for Scala? [closed]

Tags:

scala

Are there tools for code obfuscation for Scala?

like image 394
adelarsq Avatar asked Oct 30 '10 00:10

adelarsq


People also ask

What is a obfuscation tool?

An obfuscator is a tool used to increase the security of a program by making the code more complicated to read while retaining functionality.

What is DLL obfuscation?

This means that if you have a public DLL or executable that your business is distributing, anyone with a copy of your executable can open it up in a . NET decompiler like dotPeek, and directly read (and copy) your source code. Code obfuscation can't prevent this process—any . NET DLL can be plugged into a decompiler.


2 Answers

Use Scalaz. :-P

like image 191
Troll Avatar answered Nov 09 '22 11:11

Troll


Scala compiles into JVM bytecode, for which there are tons of obfuscators like ProGuard or yGuard

like image 38
Amir Afghani Avatar answered Nov 09 '22 11:11

Amir Afghani