Click here to Skip to main content
15,880,392 members
Articles / Programming Languages / Visual Basic

Using VB to Create & Check License Keys

Rate me:
Please Sign up or sign in to vote.
4.73/5 (43 votes)
23 May 2007LGPL33 min read 251.4K   21.6K   148   28
Generate and check license keys embedding 16-bit configuration information

Screenshot - Create-1.jpg

Introduction

Create and validate secure "License Keys" for your proprietary code and embed up to 16-bits of "configuration data" into the key. This code is flexible and may be used in many different licensing schemes.

Background

Everyone is familiar with getting license keys to activate software. These keys are normally based on various encryption schemes, and serve to validate that a particular user is authorized to install or run the software. The code presented here provides an easy way to integrate this functionality into your own programs.

The keys generated by the sample application are MD5 hashes of a "Licensee" name, a "Serial Number, and a "secret" program name string that is embedded into the code. We then convert the hexadecimal 32-character string to Base32 to shorten the resulting key down to 26 characters. This is easier for end-users to type and looks better and more professional as well.

The code is pretty straight-forward for the most part, and can be easily translated into other languages such as C, C++, C#, Java, etc. and is presented in as "generic" of a Visual Basic form as possible to permit easy integration into applications. It can even be used in VBA applications such as Microsoft Access if desired.

Please note that all code in this article is licensed under the LGPL, so it can be incorporated into your programs with no royalties and doesn't modify the licensing terms of your proprietary code in any way. We do ask that if you make any changes to the key generation code itself that you release the code under the same terms as you received it.

Additionally, this code provides some useful string functions to encode/decode binary values encoded in a string to Base32 and to bitwise left and right shift these values by an arbitrary number of bits.

Using the Code

Simply include the KeyCodes.bas, StrFuncs.bas, and MD5_Crypt.bas files into your project. You can prompt for whatever information you consider to be relevant to your licensing scheme, and it should end up in two string values and one LONG integer value indicating the capabilities you wish to embed into the key code.

It is expected that users of this code will modify the key generation to meet their needs. The keycodes.bas file routines are easily modified to provide different key values and can form an easy base to build your own key code routines. One change that comes to mind is to shorten the Base32 string from 26-characters to 25-characters and then grouping the "digits" in groups of five to provide nicer-looking keys.

Here's the main code that generates the key based on text boxes:

VBScript
Private Const MyProductName = "KeyCodeDemoV1"

 . . .

If Not (UserNameT = "") Or Not (ProdNameT = "") Then
  RawKey = GenKeyString(UserNameT, ProdNameT & MyProductName, FeatID)
  BinKey = HexStrToBinStr(RawKey)
  KeyCode = FormatKeyCode(Base32Enc(BinKey), 4)
Else
  KeyCode = "Please Enter Licensee and/or Serial Number"
End If

. . .

Key Strength

The keys generated by this code are relatively secure, as they are based around an MD5 hash of the data used to generate the key. You can improve security by generating a GUID during the installation, and concatenating it with the "user name" field, and then generating the keys via an online submission process. This is left as an exercise to the reader.

Key tampering is highly discouraged by the code's design. Each key is generated from an MD5 hash of the licensee, serial, and your "secret". Once this hash is created, we XOR the "permissions" bits with the last two characters of the key, then drop the first two characters of the key, run another MD5 hash of the truncated key with permissions, and then use the first and last bytes of the second MD5 hash as the first two characters of the final binary key value. These bytes verify the integrity of the permissions bits.

It is also possible to use an algorithm on the final keys to "scramble" them. Just ensure to "unscramble" them prior to attempts to verify the key with what it should be.

Sample Screenshots

  1. Create a key...

    Screenshot - Create-1.jpg

  2. Entering a key to check...

    Screenshot - Check-1.jpg

  3. A successful check...

    Screenshot - Check-OK.jpg

  4. A check that failed due to an attempt to modify key "permission" byte...

    Screenshot - Check-Fail.jpg

History

  • Initial article - 5/23/2007

License

This article, along with any associated source code and files, is licensed under The GNU Lesser General Public License (LGPLv3)


Written By
Systems Engineer iServe Technologies
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralUsing VB 2005 to create & check license keys- Pin
bhatiamanoj1722-Apr-09 7:27
bhatiamanoj1722-Apr-09 7:27 
QuestionConverting to VB2008 Pin
pjvdstap1-Jul-08 4:00
pjvdstap1-Jul-08 4:00 
AnswerRe: Converting to VB2008 [modified] Pin
Dennis Betten13-Nov-08 14:21
Dennis Betten13-Nov-08 14:21 
GeneralRe: Converting to VB2008 [modified] Pin
Member 1011865529-Aug-13 23:26
Member 1011865529-Aug-13 23:26 
QuestionVB.net Pin
Rens Duijsens8-Apr-08 2:48
Rens Duijsens8-Apr-08 2:48 
QuestionIn C#??? Pin
abalbo24-Dec-07 2:55
abalbo24-Dec-07 2:55 
QuestionDotNEt version... Pin
Tanmay Broachwala24-May-07 4:56
Tanmay Broachwala24-May-07 4:56 
AnswerRe: DotNEt version... Pin
Member 109411802-Jun-15 17:20
Member 109411802-Jun-15 17:20 
Anyone converting this application into vb already can he/she upload on this post to save time for others no need to convert again? Just asking. Really like this application. What been looking for.

Thanks

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.