I have a small VC++ project that I would like to market. Can anyone point me in the right direction in terms of writing a "serial key" system. I have no idea how these things are implemented.

link|improve this question

0% accept rate
I'm surprised no-one has said "Burrr... Don't worry about piracy, make your app better instead!". That's where these kind of questions usually end up – Charlie Somerville Oct 3 '09 at 23:53
@Charlie I think that's an unfair generalization. I don't think most people here have any problem with putting in some simple copy protection, it's just when it comes to the point that people come here posting questions on "how do I stop my software from being pirated" it needs to be stated that that shouldn't be your primary worry. – Falaina Oct 4 '09 at 6:22
feedback

4 Answers

Don't try to write one, buy it in. These things are way more complex than any of us tend to think, and your time is better spent working on your product.

Some licensing products:

link|improve this answer
feedback

A previous discussion with some good points can be found at: http://stackoverflow.com/questions/599837

link|improve this answer
feedback

typically it is based on a hash of the pc's mac address or some other ID that can be hashed to match a key. the level of security you want to put into it depends on how secure your application needs to be. here is a simple example http://www.codeproject.com/KB/security/VBNetSoftwareProtection.aspx, but if it's too easy to crack, it will be easy to generate keys. some Google searches should give other possible solutions and/or ready made software for this.

link|improve this answer
feedback

Are you looking for serial/activation pair system? It could be a fair simple solution to implement (and robust even in basic implementation) just looking for non-invertible functions - One-way functions. Generate a random number on your client, send it to a server, generate a corresponding "activation" key (private hash of serial #) and then check it locally on the client against public function. Simple and effective.

My two cents.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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