How to secure licensekey generation

Posted by Jakob Gade on Stack Overflow See other posts from Stack Overflow or by Jakob Gade
Published on 2010-03-22T03:29:48Z Indexed on 2010/03/22 3:31 UTC
Read the original article Hit count: 390

Filed under:
|
|

Scenario, simplified for brevity:

A developer creates an application for a customer. The customer sells this app to end-users. The app requires a license key to run, and this key is generated by the customer for each end-user with a simple tool created by the developer. The license key contains an expiry date for the license and is encrypted so the end-user can’t tamper with it.

The problem here is that the developer (or anybody who has a copy of the license key generator) can easily create valid license keys. Should this generator fall into the wrong hands, it could spell disaster for the customers business.

Ideally, the customer would have to use a password to create new license keys. And this password would be unknown to the developer, and somehow baked into the decryption algorithm in the application so it will fail if an attempt to use an unauthorized key is made.

How would you implement a solution for this problem that is both transparent and secure?

© Stack Overflow or respective owner

Related posts about .NET

Related posts about licensing