What's a good approach for developing a simple serial number generator/verifier? - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T11:48:08Zhttp://stackoverflow.com/feeds/question/559163http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/559163/whats-a-good-approach-for-developing-a-simple-serial-number-generator-verifier3What's a good approach for developing a simple serial number generator/verifier?Alex2009-02-17T23:15:55Z2009-02-18T00:36:12Z
<p>I'm working on an app I'd like to sell some day -- sooner rather than later! I'd like to develop a reasonably simple serial number scheme to protect it.</p>
<ul>
<li>A simple number/letter combination not more than 25-30 alphanumeric characters long (think Microsoft product keys)</li>
<li>Does not require the user to enter any personal information (like an email address) as part of the verification</li>
</ul>
<p>I've been thinking about this a (very little) bit, and I think public key cryptography is a good place to start. I could generate a string that identifies the license (like SKU + plain ole' integral serial number), hash it, encrypt it, and encode the serial number + identifier into a 25 digit (or so) alphanumeric key. The app would then decode the key into a serial number and "signature", generate an identifier hash, decrypt the "signature" using a corresponding public key and compare it against the generated identifier hash.</p>
<p>Essentially, the product key carries two pieces of data: the serial number the user claims to own plus a signature of sorts the program can use to verify that claim. I don't know if 25 alphanumeric characters (which encode 5 bits each for a realistic total of 120 bits) is enough for all this. But, it doesn't have to be cryptographically secure, just enough that the codes aren't easily guessable. I'm OK with short key lengths and short hashes.</p>
<p>As far as implementation goes, the app is written in Objective-C for Mac OS X, but given how easy it is to inject code into Cocoa apps, I'll probably write the verification code in straight C.</p>
http://stackoverflow.com/questions/559163/whats-a-good-approach-for-developing-a-simple-serial-number-generator-verifier/559197#5591974Answer by bh213 for What's a good approach for developing a simple serial number generator/verifier?bh2132009-02-17T23:29:42Z2009-02-17T23:29:42Z<p>I would not use any strong cryptography, since you have to decrypt it in program anyways, making keygens or at least cracks easy to do.</p>
<p>I would do the following - take a, say, 25 digit number. Now add some rules, such as:
- number must be divisible by 31
- it must start and end with the last letter
...</p>
<p>Always generate keys using these rules. Use 20 rules or more (more the better). When deploying the app, use smaller number of rules, e.g. 10 to check if key is valid.
These rules will then be disassemled and used to create keygen.</p>
<p>On every update enable one of the rules you didn't use before. If rules are selected correctly, you will disable most of keys generated by keygens.</p>
http://stackoverflow.com/questions/559163/whats-a-good-approach-for-developing-a-simple-serial-number-generator-verifier/559297#5592970Answer by Redbeard 0x0A for What's a good approach for developing a simple serial number generator/verifier?Redbeard 0x0A2009-02-18T00:03:58Z2009-02-18T00:03:58Z<p>I like @bh213's method, however it isn't going to prevent the key-gens from being fixed as you update your serial number rules. </p>
<p>On a more personal preference note, I prefer the key generator based on a rule set method because if hackers have to patch a binary, you stand to get a bad review on your software because of a bad hacker patch and the ensuing battle between you and hackers.</p>
<p>My preference is based on a universal software truth: <em>Software can and will be hacked if it is popular enough, there is no scheme, no ingenious method that will prevent this from happening. This battle is between the developer who has limited resources and limited time and a hacker group with unlimited time on their hands.</em> </p>
<p>Your key generation scheme is really only to keep the honest customers honest - its easier to get a check cut from Accounts Payable than it is to get Security to sign off on a key generator.</p>
http://stackoverflow.com/questions/559163/whats-a-good-approach-for-developing-a-simple-serial-number-generator-verifier/559368#5593680Answer by Pyrolistical for What's a good approach for developing a simple serial number generator/verifier?Pyrolistical2009-02-18T00:36:12Z2009-02-18T00:36:12Z<p>As Redbeard 0x0A is correct, CD-Keys are to keep honest customers honest. It just needs to be slightly less difficult to buy your product than to find a keygen.</p>
<p>If you are selling your product online, then the best way to do it is to give them a file containing the serial. This way the serial can be however long you want and your <em>paying</em> customers don't have to waste time entering a serial.</p>
<p>A serial scheme can be very simple:</p>
<ol>
<li>Have a large serial space (25 alpha numeric is about 10<sup>44</sup>, but just use a serial file and do 80 char x 16 rows for a key space of 10<sup>2311</sup>)</li>
<li>Select a few rules to reduce valid serial number space to 100 times what you think you will sell in your wildest dreams</li>
</ol>
<p>If your product has an online component (like how games have multiplayer online), you could further reduce valid serial numbers using a cryptographically strong random number generator (to select a subset of the rule based keys, product uses rule to check serial, server uses final true serial list). When your product requests service from your server, the server can check the serial.</p>