How do I best obfuscate my C# product license verification code? - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T03:23:34Zhttp://stackoverflow.com/feeds/question/501988http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/501988/how-do-i-best-obfuscate-my-c-product-license-verification-code2How do I best obfuscate my C# product license verification code?J3r3myK2009-02-02T01:38:10Z2009-02-02T04:50:41Z
<p>How do I best obfuscate my C#.net app Product Key verification code?</p>
<p>Is it enough to place it in a "INTERNAL SEALED CLASS CLASSNAME { };" or do I need to do more?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/501988/how-do-i-best-obfuscate-my-c-product-license-verification-code/501999#5019997Answer by Rex M for How do I best obfuscate my C# product license verification code?Rex M2009-02-02T01:44:48Z2009-02-02T01:52:09Z<p>Access modifiers like <code>internal</code> and <code>sealed</code> don't have anything to do with obfuscation or code security, they just tell other classes how to interact (or not interact) with them.</p>
<p>At the end of the day, there's nothing you can do to prevent piracy. Anything created by one human can be broken by another. There are loads of questions on SO that deal with product keys, keeping software secure, etc. which you can find if you use the search mechanism in the upper-right. All the answers cover a few basic ideas that anyone with a little sense will tell you:</p>
<ol>
<li>Only put enough effort into your anti-piracy measures to make cracking the software a little less convenient than breaking out the credit card. If that's really hard to do, you are charging way too much for your customer base.</li>
<li>If you focus on building positive relationships with your customers instead of assuming they are criminals, they will be more willing to give you money.</li>
<li>Most customers - individuals and especially companies - don't have any interest in cracking open your assemblies and trying to figure out how to get away with not paying you. For individuals, they wouldn't pay for it anyway so you're not losing a sale; and companies wouldn't risk mountains of cash in legal problems for the cost of some software licenses.</li>
</ol>
<p>Research <strong>public/private and elliptic key cryptography</strong> and you'll find ways to secure your key algorithm, but it will only prevent cracking the <em>key</em>, not bypassing it.</p>
http://stackoverflow.com/questions/501988/how-do-i-best-obfuscate-my-c-product-license-verification-code/502003#5020031Answer by Bob Nadler for How do I best obfuscate my C# product license verification code?Bob Nadler2009-02-02T01:48:57Z2009-02-02T01:48:57Z<p><a href="http://stackoverflow.com/questions/501988/how-do-i-best-obfuscate-my-c-net-app-product-key-verification-code/501999#501999">Rex</a> is correct, <code>internal sealed class</code> won't hide anything. Use a one-way encryption hash (e.g. <a href="http://msdn.microsoft.com/en-us/library/system.security.cryptography.md5cryptoserviceprovider.aspx" rel="nofollow">MD5CryptoServiceProvider</a>) to protect passwords and keys.</p>
http://stackoverflow.com/questions/501988/how-do-i-best-obfuscate-my-c-product-license-verification-code/502211#5022111Answer by Hasan Khan for How do I best obfuscate my C# product license verification code?Hasan Khan2009-02-02T04:42:43Z2009-02-02T04:42:43Z<p>Use <a href="http://blogs.msdn.com/ireland/archive/2008/05/02/protect-your-net-code-with-slps.aspx" rel="nofollow">Microsoft Software Licensing and Protection service.</a></p>
<blockquote>
<p>Software Licensing and Protection
Services can help you protect,
package, license, sell and control
your software.</p>
<p>To protect your IP you can select
certain functionality for one-way
transformation, and this transformed
code runs within a secure virtual
machine (SVM), with each vendor
receiving a unique SVM</p>
</blockquote>