An effective method for encrypting a license file? - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T02:39:48Zhttp://stackoverflow.com/feeds/question/359342http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/359342/an-effective-method-for-encrypting-a-license-file4An effective method for encrypting a license file?David Brown2008-12-11T13:29:09Z2009-11-07T07:18:37Z
<p>For a web application, I would like to create a simple but effective licensing system. In C#, this is a little difficult, since my decryption method could be viewed by anyone with Reflector installed.</p>
<p>What are some methods for encrypting files in C# that are fairly tamper-proof?</p>
http://stackoverflow.com/questions/359342/an-effective-method-for-encrypting-a-license-file/359357#3593570Answer by Eyvind for An effective method for encrypting a license file?Eyvind2008-12-11T13:36:28Z2008-12-11T13:36:28Z<p>Why would you need to encrypt it? If it is tampering you are afraid (for instance someone increasing the number of users), could you perhaps just sign it with e.g. your organization's digital certificate instead?</p>
http://stackoverflow.com/questions/359342/an-effective-method-for-encrypting-a-license-file/359371#3593710Answer by melaos for An effective method for encrypting a license file?melaos2008-12-11T13:41:20Z2008-12-11T13:41:20Z<p>or perhaps you want to tie a license to a particular machine, for example by generating the license key based on the md5 value of the c drive of the pc. then your license would be machine specific.</p>
http://stackoverflow.com/questions/359342/an-effective-method-for-encrypting-a-license-file/359412#3594121Answer by BeowulfOF for An effective method for encrypting a license file?BeowulfOF2008-12-11T13:53:20Z2008-12-11T13:53:20Z<p>The only way to provide some sort of security with licensing is to force an online login against credentials hold by yourself (really abstract spoken).</p>
<p>All other methods take more time, and therefore more money, to implement, as to crack and abuse your software instead of buying a license.</p>
<p>.NET has some good cryptographic classes, but as you mentioned, if you are coding the en-/decription of the license, everyone can decompile it easily.</p>
http://stackoverflow.com/questions/359342/an-effective-method-for-encrypting-a-license-file/359448#3594484Answer by Frans Bouma for An effective method for encrypting a license file?Frans Bouma2008-12-11T14:05:03Z2008-12-11T14:05:03Z<p>Use a signed XML file. Sign it with the private key part of a keypair and check it with the public key part in your software. This gives you the oppertunity to check whether the license has been altered and also to check if the license file is valid. </p>
<p>Signing and checking of a signed XML file is documented in the MSDN. </p>
<p>It's of course logical that you sign the license file at your own company and send the license file to the customer who then places the license file in a folder for you to read. </p>
<p>Of course, people can cut out/hack your distributed assembly and rip out the xml sign checking, but then again, they will always be able to do so, no matter what you do. </p>
http://stackoverflow.com/questions/359342/an-effective-method-for-encrypting-a-license-file/359923#35992312Answer by Wolfwyrd for An effective method for encrypting a license file?Wolfwyrd2008-12-11T16:17:16Z2008-12-11T16:17:16Z<p>It sounds like you want to be using Public/Private cryptography to sign a license token (an XML Fragment or file for example) so you can detect tampering. The simplest way to handle it is to do the following steps:</p>
<p>1) Generate a keypair for your company. You can do this in the Visual Studio command line using the SN tool. Syntax is: </p>
<pre><code>sn -k c:\keypair.snk
</code></pre>
<p>2) Use the keypair to strongly name (i.e. sign) your client application. You can set this using the signing tab in the properties page on your application</p>
<p>3) Create a license for your client, this should be an XML document and sign it using your Private key. This involves simply computing a digital signature and steps to accomplish it can be found at:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/ms229745.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms229745.aspx</a></p>
<p>4) On the client, when checking the license you load the XmlDocument and use your Public key to verify the signature to prove the license has not been tampered with. Details on how to do this can be found at:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/ms229950.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms229950.aspx</a></p>
<p>To get around key distribution (i.e. ensuring your client is using the correct public key) you can actually pull the public key from the signed assembly itself. Tgus ensuring you dont have another key to distribute and even if someone tampers with the assembly the .net framework will die with a security exception because the strong name will no longer match the assembly itself. </p>
<p>To pull the public key from the client assembly you want to use code similar to:</p>
<pre><code> /// <summary>
/// Retrieves an RSA public key from a signed assembly
/// </summary>
/// <param name="assembly">Signed assembly to retrieve the key from</param>
/// <returns>RSA Crypto Service Provider initialised with the key from the assembly</returns>
public static RSACryptoServiceProvider GetPublicKeyFromAssembly(Assembly assembly)
{
if (assembly == null)
throw new ArgumentNullException("assembly", "Assembly may not be null");
byte[] pubkey = assembly.GetName().GetPublicKey();
if (pubkey.Length == 0)
throw new ArgumentException("No public key in assembly.");
RSAParameters rsaParams = EncryptionUtils.GetRSAParameters(pubkey);
RSACryptoServiceProvider rsa = new RSACryptoServiceProvider();
rsa.ImportParameters(rsaParams);
return rsa;
}
</code></pre>
<p>I've uploaded a class with a bunch of crypto methods that you may find useful at:</p>
<p><a href="http://www.chaosink.co.uk/files/code/encryptionutils.zip" rel="nofollow">http://www.chaosink.co.uk/files/code/encryptionutils.zip</a></p>
<p>to help get you on your way.</p>
http://stackoverflow.com/questions/359342/an-effective-method-for-encrypting-a-license-file/1313920#13139200Answer by Mark for An effective method for encrypting a license file?Mark2009-08-21T19:50:25Z2009-08-25T12:53:18Z<p>RE: Do not include the whole key in your code. Use sn -p to extract the public part to a file. Use that in your code you distribute to verify the license. </p>
<p>Using the code from the MSDN articles, I created a small app (LicMaker) to facilitate this. The app is signed with the full key pair. The input is an unsigned .XML license file. The output is the original XML + signature in a signed .LIC file. My product is also signed by the same full key pair file as well. The product verifies the .LIC file has not been tampered with. Works Great. I did not use sn -p for this solution.</p>
http://stackoverflow.com/questions/359342/an-effective-method-for-encrypting-a-license-file/1316907#13169070Answer by mark for An effective method for encrypting a license file?mark2009-08-22T20:02:32Z2009-08-22T20:19:15Z<p>It appears that the MSDN Samples use default parameters and this results in machine- specific signing such that you cannot sign on one machine and verify on an arbitrary other machine. I modified the logic in those samples to use the keys in my snk on the signing machine and keys from my assembly in the verifying machine. This was done using the logic from the MSDN sample and routines in the (very nicely done) ExcryptionUtils.cs sample linked above.</p>
<p>For signing the file, I used this:</p>
<pre><code>RSACryptoServiceProvider rsaKey = EncryptionUtils.GetRSAFromSnkFile(keyFilePath);
</code></pre>
<p>For verifying the file, I used this:</p>
<pre><code>RSACryptoServiceProvider rsaKey = EncryptionUtils.GetPublicKeyFromAssembly
(System.Reflection.Assembly.GetExecutingAssembly());
</code></pre>
<p>BTW: I observed that the XML signature verification ignores XML comments. </p>
http://stackoverflow.com/questions/359342/an-effective-method-for-encrypting-a-license-file/1643056#16430560Answer by Cocowalla for An effective method for encrypting a license file?Cocowalla2009-10-29T11:25:29Z2009-10-29T11:25:29Z<p>Wolfwyrd's answer is excellent, but I just wanted to offer a muich simpler version of Wolfwyrd's <code>GetPublicKeyFromAssembly</code> method (which uses a lot of helper methods from the library Wolfwyrd graciously supplied).</p>
<p>In this version, this is all the code you need:</p>
<pre><code>/// <summary>
/// Extracts an RSA public key from a signed assembly
/// </summary>
/// <param name="assembly">Signed assembly to extract the key from</param>
/// <returns>RSA Crypto Service Provider initialised with the public key from the assembly</returns>
private RSACryptoServiceProvider GetPublicKeyFromAssembly(Assembly assembly)
{
// Extract public key - note that public key stored in assembly has an extra 3 headers
// (12 bytes) at the front that are not part of a CAPI public key blob, so they must be removed
byte[] rawPublicKeyData = assembly.GetName().GetPublicKey();
int extraHeadersLen = 12;
int bytesToRead = rawPublicKeyData.Length - extraHeadersLen;
byte[] publicKeyData = new byte[bytesToRead];
Buffer.BlockCopy(rawPublicKeyData, extraHeadersLen, publicKeyData, 0, bytesToRead);
RSACryptoServiceProvider publicKey = new RSACryptoServiceProvider();
publicKey.ImportCspBlob(publicKeyData);
return publicKey;
}
</code></pre>
http://stackoverflow.com/questions/359342/an-effective-method-for-encrypting-a-license-file/1692246#16922460Answer by Duncan Bayne for An effective method for encrypting a license file?Duncan Bayne2009-11-07T06:43:31Z2009-11-07T07:18:37Z<p>When you implement your signing / verification code, be careful not to put it in a separate assembly. Code Access Security tamper-proofing is now very easy to bypass, as explained in the article <a href="http://www.offbyzero.com/resources/cas%5Fbroken" rel="nofollow">CAS Tamper-Proofing is Broken: Consequences for Software Licensing</a>.</p>
<p>Obligatory disclaimer & plug: the company I co-founded produces the <a href="https://cobalt.offbyzero.com/" rel="nofollow">OffByZero Cobalt licensing solution</a>.</p>