vote up 0 vote down star

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.

flag

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 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 at 6:22

4 Answers

vote up 1 vote down

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

link|flag
vote up 0 vote down

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|flag
vote up 0 vote down

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|flag
vote up 3 vote down

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.

link|flag

Your Answer

Get an OpenID
or

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