obfuscation

G

Geert Audenaert

Hi all,

i wondered if it is possible to distribute the software i make with an
obfuscated version of the .net framework?

And if so, which assemblies do i have to obfuscate ?

Greetings,

Geert
 
G

Guest

You do not have to obfuscate the .NET assemblies, only your own assemblies.

---

Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

***************************
Think Outside the Box!
***************************
 
G

Geert Audenaert

If you only obfuscate your own assemblies it's very easy to see what's
happening based on the not obfuscated calls to the framework. That's
why i would like to obfuscate the framework itself too.
 
M

Mary Chipman

The only way you can ever truly obfuscate *all* CLR code is to deploy
your software as a Web service.

--Mary
 
R

remotesoft

Yes, it is possible, but first you will have to link the framework into your
assembly, then obfuscate the combined assembly. Our linker can do this kind
of linking,

http://www.remotesoft.com/linker

without linking, it is impossible since all framework libraries are strong
named, once obfuscated, it wouldn't work.

Huihong
Remotesoft
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top