Click here to Skip to main content
Click here to Skip to main content

Generating Unique Key (Finger Print) for a Computer for Licensing Purposes

By , 24 Jan 2011
 

Introduction

For licensing purposes, according to me, the best and secure way is to generate a unique key for the client's machine and provide a corresponding license key for that key. For this purpose, you can take help of the unique id of the client's computer motherboard, BIOS and processor. When you get these IDs, you can generate any key of your preferable format.

Year ago, I found a very handy and useful code in C# by searching the Internet to get these IDs. And it's serving me perfectly so far. Thanks to the original author of the code.

I added some additional code to generate a 128 bit key of a machine. The output is a nice looking key in hexadecimal format (eg. 4876-8DB5-EE85-69D3-FE52-8CF7-395D-2EA9).

Suggestions

I have a few suggestions in this regard:

  • Generate a key from only the Motherboard, Processor and BIOS since the user normally doesn't change these parts.
  • Don't use MAC ID, Graphics Card ID AND Disk ID since it's very common to change these devices.
  • It takes significant time to get IDs of devices. So make the finger print generating function static and save it in a static variable so that it generates the key only once in the whole application.

The Code

Here is the class. The code in the region "Original Device ID Getting Code" is from the original author.

using System;
using System.Management;
using System.Security.Cryptography;
using System.Security;
using System.Collections;
using System.Text;
namespace Security
{
    /// <summary>
    /// Generates a 16 byte Unique Identification code of a computer
    /// Example: 4876-8DB5-EE85-69D3-FE52-8CF7-395D-2EA9
    /// </summary>
    public class FingerPrint  
    {
        private static string fingerPrint = string.Empty;
        public static string Value()
        {
            if (string.IsNullOrEmpty(fingerPrint))
            {
                fingerPrint = GetHash("CPU >> " + cpuId() + "\nBIOS >> " + 
			biosId() + "\nBASE >> " + baseId()
                            //+"\nDISK >> "+ diskId() + "\nVIDEO >> " + 
			videoId() +"\nMAC >> "+ macId()
                                     );
            }
            return fingerPrint;
        }
        private static string GetHash(string s)
        {
            MD5 sec = new MD5CryptoServiceProvider();
            ASCIIEncoding enc = new ASCIIEncoding();
            byte[] bt = enc.GetBytes(s);
            return GetHexString(sec.ComputeHash(bt));
        }
        private static string GetHexString(byte[] bt)
        {
            string s = string.Empty;
            for (int i = 0; i < bt.Length; i++)
            {
                byte b = bt[i];
                int n, n1, n2;
                n = (int)b;
                n1 = n & 15;
                n2 = (n >> 4) & 15;
                if (n2 > 9)
                    s += ((char)(n2 - 10 + (int)'A')).ToString();
                else
                    s += n2.ToString();
                if (n1 > 9)
                    s += ((char)(n1 - 10 + (int)'A')).ToString();
                else
                    s += n1.ToString();
                if ((i + 1) != bt.Length && (i + 1) % 2 == 0) s += "-";
            }
            return s;
        }
        #region Original Device ID Getting Code
        //Return a hardware identifier
        private static string identifier
		(string wmiClass, string wmiProperty, string wmiMustBeTrue)
        {
            string result = "";
            System.Management.ManagementClass mc = 
		new System.Management.ManagementClass(wmiClass);
            System.Management.ManagementObjectCollection moc = mc.GetInstances();
            foreach (System.Management.ManagementObject mo in moc)
            {
                if (mo[wmiMustBeTrue].ToString() == "True")
                {
                    //Only get the first one
                    if (result == "")
                    {
                        try
                        {
                            result = mo[wmiProperty].ToString();
                            break;
                        }
                        catch
                        {
                        }
                    }
                }
            }
            return result;
        }
        //Return a hardware identifier
        private static string identifier(string wmiClass, string wmiProperty)
        {
            string result = "";
            System.Management.ManagementClass mc = 
		new System.Management.ManagementClass(wmiClass);
            System.Management.ManagementObjectCollection moc = mc.GetInstances();
            foreach (System.Management.ManagementObject mo in moc)
            {
                //Only get the first one
                if (result == "")
                {
                    try
                    {
                        result = mo[wmiProperty].ToString();
                        break;
                    }
                    catch
                    {
                    }
                }
            }
            return result;
        }
        private static string cpuId()
        {
            //Uses first CPU identifier available in order of preference
            //Don't get all identifiers, as it is very time consuming
            string retVal = identifier("Win32_Processor", "UniqueId");
            if (retVal == "") //If no UniqueID, use ProcessorID
            {
                retVal = identifier("Win32_Processor", "ProcessorId");
                if (retVal == "") //If no ProcessorId, use Name
                {
                    retVal = identifier("Win32_Processor", "Name");
                    if (retVal == "") //If no Name, use Manufacturer
                    {
                        retVal = identifier("Win32_Processor", "Manufacturer");
                    }
                    //Add clock speed for extra security
                    retVal += identifier("Win32_Processor", "MaxClockSpeed");
                }
            }
            return retVal;
        }
        //BIOS Identifier
        private static string biosId()
        {
            return identifier("Win32_BIOS", "Manufacturer")
            + identifier("Win32_BIOS", "SMBIOSBIOSVersion")
            + identifier("Win32_BIOS", "IdentificationCode")
            + identifier("Win32_BIOS", "SerialNumber")
            + identifier("Win32_BIOS", "ReleaseDate")
            + identifier("Win32_BIOS", "Version");
        }
        //Main physical hard drive ID
        private static string diskId()
        {
            return identifier("Win32_DiskDrive", "Model")
            + identifier("Win32_DiskDrive", "Manufacturer")
            + identifier("Win32_DiskDrive", "Signature")
            + identifier("Win32_DiskDrive", "TotalHeads");
        }
        //Motherboard ID
        private static string baseId()
        {
            return identifier("Win32_BaseBoard", "Model")
            + identifier("Win32_BaseBoard", "Manufacturer")
            + identifier("Win32_BaseBoard", "Name")
            + identifier("Win32_BaseBoard", "SerialNumber");
        }
        //Primary video controller ID
        private static string videoId()
        {
            return identifier("Win32_VideoController", "DriverVersion")
            + identifier("Win32_VideoController", "Name");
        }
        //First enabled network card ID
        private static string macId()
        {
            return identifier("Win32_NetworkAdapterConfiguration", 
				"MACAddress", "IPEnabled");
        }
        #endregion
    }
}

Upcoming Code

Later I'll show how I generated the license key from the unique machine key. The license key contains a lot of information like the Product Name, License Start Date, End Date and the Key.

Keep eyes on my blog (sowkot.blogspot.com).

History

  • 19th August, 2008: Initial post

My Other Articles

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Sowkot Osman
Software Developer (Senior)
Australia Australia
Member
-7 years of extensive experience in devloping both desktop and web applications in C#.NET, VB.NET and ASP.NET, ASP.NET MVC 3.0/4.0
-5 years of experience in developing web applications in J2EE, Free Marker, JSP, Spring MVC, Spring Webflow.
-Expertise in Software Architecture and Framework design.
Blog: http://sowkot.blogspot.com


Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralMy vote of 5membercava4des4 Feb '13 - 18:40 
excellent,
i really need it
Question[My vote of 1] 99% of this was done by the "other" guymemberJose A Pascoa2 Feb '13 - 21:47 
that you don't even mention the name. Think for a second about this.
Mad | :mad:
QuestionWould love to see the final part where reverse the hex string backmemberearthit23 Jan '13 - 4:54 
great so far but I want to reverse the hex string back to plain english, any help much appreciated.
Questionjust my 0.01 cents :)memberJayson Ragasa5 Dec '12 - 16:15 
string[] fingerprint = {
	"CPU|" + cpuId(),
	"BIOS|" + biosId(),
	"BASE|" + baseId(),
	"DISK|" + diskId(),
	"VIDEO|" + videoId(),
	"MAC|"+ macId()
};
 
fingerPrint = string.Join("\r\n", fingerprint);
Software Developer
Jayzon Ragasa
Baguio City, Philippines

QuestionDon't forget to add your Reference! Hahamemberandrogenic_human30 Nov '12 - 16:51 
Thank you Sowkot, you saved me some time!
QuestionMono Support?memberEddie Y Chen2 Nov '12 - 21:39 
This works fine in a windows based machine but fails to run in Linux.
Any idea how to accomplish the same thing without referencing system.management?
Questionget back original datamemberKrishna Kapadia28 Oct '12 - 20:16 
Is there any way to get back original string from generated key???
Krishna

GeneralNot so easymembernumo25 Jun '12 - 3:23 
Been there, done that. This is not so easy. From my experience
 
- video card is unreliable, as quite a few notebooks out there now use dual video, dynamically switching between them according to system's graphic power needs. Sometimes even remote access tool change this.
 
- BIOS data is unreliable - first a BIOS update might change things, second there are BIOS bugs. I've seen BIOS reporting textual or hex vendor id depending on whether there is an eSATA drive connected.
 
- network is unreliable. There are computers switching off the network card when there is no cable plugged in so that the MAC is not visible to the OS at all. Some do this only if it is running on battery.
 
I don't think there is a way to build reliable small rigid id. It might be possible to collect the data and allow for a limited number of changes.
QuestionHack the keymembernitin-aem16 Jun '12 - 1:42 
Hi,
 
As decompilation tools are available so anybody can decode the application being used to create the key. Once the code is in hand , anybody can crack the license key.
AnswerRe: Hack the keymembersoftwaretry10 Jul '12 - 2:35 
Hahaha...
Joke...Learn first and then say.
 
There is a solution, we can obfuscate the code.

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

Permalink | Advertise | Privacy | Mobile
Web04 | 2.6.130523.1 | Last Updated 24 Jan 2011
Article Copyright 2011 by Sowkot Osman
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid