Click here to Skip to main content
15,882,055 members
Articles / Programming Languages / Visual Basic
Tip/Trick

License Keys in VB.NET - Revisited

Rate me:
Please Sign up or sign in to vote.
4.86/5 (16 votes)
10 Jul 2014LGPL33 min read 102.5K   11.8K   47   36
License Key class to make generating and validating keys easy.

Image 1

Introduction

This is a VB.NET class that creates secure license keys that encode a Product ID, a Serial Number, and 16 bits of configuration data which can optionally be treated as a date value, such as for an expiration date for subscription-based licensing.

This solution is simpler and easier to use than my previous one from the article at Using VB to Create & Check License Keys, which uses a different approach entirely and has some challenges in a .NET environment.

Please note that earlier versions of this article used code that will result in keys that are not compatible with this code.

Background

Software key codes are a popular way of authorizing use of a program. They need to be reasonably short, but secure from hacks intended to work around them. Allowing the flexibility to store an extra 16-bits of configuration data that can be used as either a raw number, a date, or as 16 boolean options is a very useful addition to many other approaches.

Using the Code

Included in the source project is a class called LicKey.vb. Simply add this class and the Base32.vb and Encryption.vb source files to your project, then create an instance of a LicKey object:

VB.NET
Dim LK As New LicKey

To generate a code, simply set the SerialNo, ProductID, and OptValue properties, and read the result with the KeyCode property:  Optionally, you can set the Salt property to make your keys more unique than the default.

VB.NET
Private Sub AppMain_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
     LK.SerialNo = 1
     LK.ProductID = 1
     LK.OptValue = 0

     Dim Code As String = LK.KeyCode
     tbKey.Text = Code
     tbLen.Text = tbKey.Text.Length
     Call SetChecks()
 End Sub

 Private Sub tbKey_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles tbKey.TextChanged

     LK.KeyCode = tbKey.Text.ToUpper

     If LK.SerialNo = 0 Then
         tbDecode.Text = "Invalid Key Entered"
     Else
         tbDecode.Text = "Serial: " & LK.SerialNo.ToString & vbCrLf
         tbDecode.Text = tbDecode.Text & "ProdID: " & LK.ProductID.ToString & vbCrLf
         tbDecode.Text = tbDecode.Text & "OptVal: " & LK.OptValue.ToString & vbCrLf
     End If
     Call SetChecks()
 End Sub

The above creates an instance of the class named LK, and sets the relevant parameters, and then reads out the encoded license key and displays it in a textbox named tbKey, along with its length in a tbLen textbox.

Decoding a key is very easy as well. Once an instance is created, simply set the KeyCode() property to the license key. If it is valid, then the SerialNo, ProductID, and OptValue properties will hold the data that is encoded into the key. If it is invalid, then SerialNo, ProductID, and OptValue will all be zero.

The OptValue() property may be used in any of three modes. It may be treated as a simple 16-bit number, as a set of 16 options which can be read via the OptionEnabled(x) method, set via SetOption(x) method, or unset via the UnsetOption(x) method. It may also be used in a date mode via the ExpDate() property.

Internally, the class generates and decodes keys that are AES-256 symmetrically encrypted with a key generated from the calling program's Application.ProductName property. This ensures that all keys created for a particular product can only be used with that product - other use of the same library will generate an incompatible key code. The class internally holds two Integer and one UInt16 variables in a SerialInf structure, which is converted to a byte array and then encrypted to generate a code, or a code is decrypted and marshaled into the structure.

Note that an invalid code cannot be decrypted, and will result in all zeroes in the structure.

Demo Application

Included in the solution is a simple demo application that shows all of the features of the class and can serve as the base for your own keycode generation and management system.

Credits

Many thanks go to wampus1 for his .NET Encryption Simplified article and class, which made the encryption/decryption of the key codes much easier.

History

  • Created on 3/18/2014
  • Updated on 7/9/2014 to add the Salt property and to make internal keys more deterministic.

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

 
Questionusing key in other form Pin
Member 140555398-Dec-18 19:32
Member 140555398-Dec-18 19:32 
QuestionUsing ExpDate Pin
DeveloppeurVb30-Mar-18 22:47
DeveloppeurVb30-Mar-18 22:47 
QuestionThe date is changing Pin
Balázs Lengyel18-Feb-18 5:19
Balázs Lengyel18-Feb-18 5:19 
AnswerRe: The date is changing Pin
maz23312-Oct-18 4:48
maz23312-Oct-18 4:48 
QuestionNew property Pin
chenaz198713-Feb-18 17:15
chenaz198713-Feb-18 17:15 
AnswerRe: New property Pin
maz23312-Oct-18 4:49
maz23312-Oct-18 4:49 
Questioncompiled exe recognized as trojan (Win32/Fuerboos.A!cl) by Windows Defender Pin
Member 238935924-Jan-18 13:00
Member 238935924-Jan-18 13:00 
AnswerRe: compiled exe recognized as trojan (Win32/Fuerboos.A!cl) by Windows Defender Pin
Member 238935925-Jan-18 13:54
Member 238935925-Jan-18 13:54 
QuestionCan you develop the same for access database Pin
Member 1262153622-Feb-17 8:21
Member 1262153622-Feb-17 8:21 
AnswerRe: Can you develop the same for access database Pin
maz233126-May-17 11:32
maz233126-May-17 11:32 
Questioncan I use processor ID and BIOS ID instead of serial and prod ID ? Pin
salemahmeed18-Dec-16 21:35
salemahmeed18-Dec-16 21:35 
AnswerRe: can I use processor ID and BIOS ID instead of serial and prod ID ? Pin
maz233126-May-17 11:31
maz233126-May-17 11:31 
Questionuse processor ID and BIOS ID instead of serial and prod ID Pin
salemahmeed18-Dec-16 21:35
salemahmeed18-Dec-16 21:35 
QuestionUse Option AND ExpDate Pin
Member 1253931725-May-16 23:17
Member 1253931725-May-16 23:17 
AnswerRe: Use Option AND ExpDate Pin
maz233119-Oct-16 17:26
maz233119-Oct-16 17:26 
QuestionFloating licences Pin
Member 86204139-Nov-15 10:14
Member 86204139-Nov-15 10:14 
BugSerial Relative to Current Date. Pin
iProgramIt24-Oct-15 19:46
professionaliProgramIt24-Oct-15 19:46 
QuestionHow do I use this? Pin
savedlema20-May-15 9:12
savedlema20-May-15 9:12 
Sorry buddy, I'm new to this and I would like to know how to use this. Do I have to manually input the product ID and serial number so that I can get the keys? If so, how should I be sure not to use the same prod id/serial more than once?

Did you also say that I should use (product id + Serial+Exp date) or (prod id + serial + options)? meaning that exp date and options shouldn't be used together?

Thank you.
QuestionExpDate <-> Options Pin
PeterCicaMolnar13-Sep-14 23:56
PeterCicaMolnar13-Sep-14 23:56 
AnswerRe: ExpDate <-> Options Pin
maz233130-Apr-15 19:05
maz233130-Apr-15 19:05 
QuestionIs there an option to expand on the Product ID and Serial No ? Pin
Tino Fourie15-Jul-14 11:11
Tino Fourie15-Jul-14 11:11 
AnswerRe: Is there an option to expand on the Product ID and Serial No ? Pin
Member 1219908711-Dec-15 11:53
Member 1219908711-Dec-15 11:53 
QuestionError Downloading Pin
Demon Slayer11-Jun-14 0:12
Demon Slayer11-Jun-14 0:12 
Questiontrying your code but i see a problem Pin
duup11-Apr-14 7:05
duup11-Apr-14 7:05 
AnswerRe: trying your code but i see a problem Pin
maz23319-Jul-14 11:16
maz23319-Jul-14 11:16 

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.