vote up 2 vote down star
2

I have a C# .NET app. This application is tightly coupled to a piece of hardware. Think ATM, drive up kiosk kinda thing. I want a way for my application to assure it is being run on our hardware. Our initial plan was to get the serial number of the CPU, OS, HD, or other hardware with WMI, digitally sign that, and ship that signature with the software. The application would then have the public key in it to verify the signature. Is there a better way to do this?

Update 1

We dont want a dongle or a hasp. Nothing external to the system.

flag

78% accept rate
You realize that you will probably put more money amd effort into preventing it from other hardware than it's worth. Anyone that really want to run the software without your signing key can just remove your protections. Also you are now limiting your customers if they ever need to quickly fix the system. – Matthew Whited Oct 15 at 20:43

1 Answer

vote up 1 vote down

We do something similar for software licensing by signing an XML file, although ours isn't tied to any hardware. The same concept applies. It works well.

You will also need to protect your .NET code using some kind of obfuscation tool, we use {smartassembly} but there are several others out there.

Keep in mind that no matter what you do, given enough time and resources, someone can bypass it.

That doesn't mean you should not protect your intellectual property, but there is a point where you get diminishing returns and cause more trouble to you and your customers that it's worth.

link|flag

Your Answer

Get an OpenID
or

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