I need to embed private RSA keys in my application. My RSA keys are generated based on a product serial number and option. Example serial#1_opt1.private (this file contains a key I want to embed in the code) serial#1_opt1.public (if the user e.g. a hardware reseller needs access to the a restricted function I send him this file to unlock a particular option) Each customer needs/could need a different set of keys based on the options he is authorized to use.

There are a standard set of features in my application that I want everyone to have (basic control of the hardware) My vision is for the standard set of features the product will have no have a serial number and no embedded keys. So the none of the restricted function[s] will work but all the standard stuff will work. The program will have a version number but no serial number in the about/help section

If I need to enable the the restricted function[s] I compile the program using MSbuild with the serial number I generated for that customer on the command line. MSBuild will take the serial number and embed it where I can access it in my code I'm hoping it will end up in properties.settings file??? and put it in the var named serial number that would be blank by default. Now that MSBuild has put the serial number in the correct place I now want it to go look for the file serial#1_opt1.private with the private key[s] and put it/them somewhere? where I can access them......but hopefully not where they are easily found. When my application runs I use the private keys to encrypt "something" and if the user has the file[s] with the public keys he can decrypt that "something" which will allow him to use that particular option. If he has all the public key files for all the options then he can do anything I can to the hardware......as in screw it up so badly it has to be returned to the factory to be re-calibrated. Can some tell me if this is the correct approach? If not what would be the correct aproach? And if it is how how can I get MSBuild to do these tricks?

link|improve this question

50% accept rate
feedback

1 Answer

up vote 2 down vote accepted

why don't go another way:

  • embed a public key into your app (or just distribute it openly with your app)
  • this public key can be identical for all customers
  • if you need to give a customer some spcial option you create an XML
  • that XML contains whatever options in a format you define
  • that XML can contain anything in cleartext
  • you sign that XML (create the signature with your private key which is NEVER distributed)
  • your app can verify the XML is genuine by verifying the signature (for this it need the public key)

your customer can't create valid signatures based on the public key... if your hardware has some non-changeable serial number your app can read then I would put this hardware serial number into the XML too... this way one XML file can't be copied/used by different customers...

You can even extend this scheme by supplying customer specific public keys (and keeping the corresponding private keys private)... these can be distributed openly with the app without any need for hiding or MSBUILD trick since the public key being known to anyone is not a security risk at all...

Ideally you sign your app/assembly (for this you need a certificate) which provides some security against tampering with your app/assembly then you have something really solid without need for any "tricks"...

link|improve this answer
Hi Yahia This soundslike a better approach. – user593082 Aug 30 '11 at 23:51
Hi Yahia This sounds like a better approach to me. I need to mull it over for little while. I'll get back to you tomorrow I have to go hoime right now, this looks much simpler cleaner. Thanks much – user593082 Aug 31 '11 at 0:37
Hi Yahia After being out a day and giving it some thought I still think your approach is correct/better than what I wanted to do but I am having a little trouble getting my mind around the implementation/details of what I want to do. Can you critique\offfer any suggestions for implementating this approach? First I would neet to generate keys for any/all options I wanted to lockout. – user593082 Sep 1 '11 at 20:00
You would to either generate one key pair (public+private) OR one key pair per customer. The Keys only have the role to make sure that any XML you send can be verified by your app as genuine (no customer can tamper with your XML and/or generate his own XML)... and whatever options you want to lock or unlock etc. can be written in cleartext into the XML... you could for example have a standard XML (where certain options are marked as locked) and deliver that with your app... your could even have a fallback for the case when the XML is not available (some or all options locked)... – Yahia Sep 1 '11 at 22:04
Hi Yahia sorry about the last post I was intrrupeted and accidently hit the add comment before I was finished with my thoughts. – user593082 Sep 1 '11 at 22:53
show 8 more comments
feedback

Your Answer

 
or
required, but never shown

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