vote up 6 vote down star
2

I am fairly new with silverlight and I really find it cool. I have a question about how it runs the code client-side tho..

Say for example, I have a site that calculates a certain amount based on user inputted amounts. This of course I would love to do client-side. The catch though, is that the formula used for the calculation is proprietary and a trade secret. If I put this formula client-side using SL, will it be safe? Or can it be reflected?

flag

8 Answers

vote up 10 vote down

If you want to keep algorithms secret, don't push it to the client side. No form of obfuscation or protection is ever perfect.

Also, when you have calculations on the client side, you should always check the results on the server, rather than just assuming they're correct. Assume that the client is compromised.

link|flag
+1: Obfuscation is usually worthless on secrets of any decent value. – MichaelGG Feb 16 at 18:59
vote up 2 vote down

Just a note to Dotfuscator users: If you create a Dotfuscator project, you must use the "User Defined Assembly Load Path" property in the "Settings" tab to browse to the Silverlight libs. The paths you need are:

  1. \Program Files\Microsoft SDKs\Silverlight\v2.0\Reference Assemblies
  2. \Program Files\Microsoft SDKs\Silverlight\v2.0\Libraries\Client

    or on 64 bit operating systems:

  3. \Program Files (x86)\Microsoft SDKs\Silverlight\v2.0\Reference Assemblies

  4. \Program Files (x86)\Microsoft SDKs\Silverlight\v2.0\Libraries\Client
link|flag
As of the 4.4.1600 release of Dotfuscator Professional on December 18, 2008 you no longer needed to add a User Defined Assembly Load Path for Silverlight . – Joe Kuemerle Apr 23 at 18:22
vote up 1 vote down

Silverlight pushes the XAP file to the client. The XAP file is simply a zip file containing your .NET assemblies, which can then be unzipped and reflected against. The company I work for (PreEmptive Solutions) markets Dotfuscator, which can obfuscate Silverlight assemblies. Right now you have to unzip the xap, obfuscate and zip them back in, but we're working on improving the workflow.

link|flag
vote up 1 vote down

I must COMPLETELY agree with Marcus. Even obstruficated .NET assembly is still easy to read for a good programmer.

My solution would be WCF service for the calculation. Just push all the data there and give an answer. If your formula is top secret and not obvious (like a*x+b*y+c*z) then even is somebody would get access to service, then it wuold be hard for him to get it.

link|flag
vote up 0 vote down

Don't fall into a trap of think hiding the algorithm will protect it. Once you put it on the web somebody will figure it out no matter what you do. With enough sample data anybody with some math skills should be able to figure out your algorithm.

All you can do is make it harder. If this algorithm is is something proprietary that you have bought then it will need to be server side. Putting the algorithm on the client side is essentially publishing it and you could be liable.

link|flag
vote up 0 vote down

There are many companies that support obfuscating Silverlight 2.0 applications. DeepSea Obfuscator has a nicely integrated experience, Dotfuscator also work and soon, the free Eazfuscator will also support it.

link|flag
vote up 0 vote down

IntelliLock and .NET Reactor (my preferred tool) obfuscates my assemblies nicely.

link|flag
vote up 0 vote down

While obfuscation is not a fool-proof method, it makes it that much more difficult for somebody to see your code. One has to really jump though convoluted hoops to get to your final code if the layers of obfuscation are good. Crypto Obfuscator is one obfuscator which supports obfuscation of Silverlight assemblies.

link|flag

Your Answer

Get an OpenID
or

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