Click here to Skip to main content
15,883,809 members
Articles / Web Development / ASP.NET
Article

Generating Unique Keys in .Net

Rate me:
Please Sign up or sign in to vote.
3.74/5 (64 votes)
17 Jun 20063 min read 430.4K   10.2K   118   62
I need to create some unique IDs. GUIDs are great as they give Globally Unique identifier but they are big. I mean if you want to issue unique number in your application which you want to give as Booking Number or any reference number then GUIDs is obviously not a solution.

Introduction

I have few applications where I need to create some unique IDs. GUIDs are great as they give Globally Unique identifier but they are big. I mean if you want to issue unique number in your application which you want to give as Booking Number or any reference number then GUIDs is obviously not a solution. Therefore, I need some simple Id which is unique too. For example when I send a request to my Credit Card Processor there's an ID that correlates my invoice with the transaction at the provider. A GUID isn't what I'd want here.

But one relatively simple solution is to create sequential ID which will be of appropriate size as well as it will guarantee uniqueness. Very Good and Simple solution!!! Isn’t it !! My answer would be NO !! Because it is security threat for your website. In case of Web Application where you can Retrieve your Order or Booking Details by just giving Order Reference number, you can easily BruteForce Sequential Reference numbers to retrieve records.

In this article I will discuss some of my research and techniques.

Using DateTime and HashCode:

Using DateTime for generating unique keys is very common practice. I have remixed this approach by inducing HashCode in it also. Like

DateTime.Now.ToString().GetHashCode().ToString("x"); 

It will give you some key like 496bffe0. At the first glance it seems to be satisfied Unique key as its using current time and hashing to generate key but GetHashCode() doesn’t procduce unique code everytime. Althought Microsoft is using Double Hashing algorithms with N Number of collision resolving double hash function but during my experimentation I found lot of collisions.

Using GUIDs and HashCode:

So then I tried

<BR>Guid.NewGuid().ToString().GetHashCode().ToString("x"); 

It gives key something like 649cf2e3

Somehow I don't think that this string representation at least is unique… 38 characters represented as 8? Ok 32 bits, but still it's 8 digits and characters limited to hex values and yes my doubt got right as I wrote program which generated 100,000 keys and checked it for collisions and found several keys duplicated.

Using RNGCryptoServiceProvider and Character Masking

The .net Framwork provides RNGCryptoServiceProvider class which Implements a cryptographic Random Number Generator (RNG) using the implementation provided by the cryptographic service provider (CSP). This class is usually used to generate random numbers. Although I can use this class to generate unique number in some sense but it is also not collision less. Moreover while generating key we can make key more complicated by making it as alpha numeric rather than numeric only. So, I used this class along with some character masking to generate unique key of fixed length. Below is code sample:

private string GetUniqueKey()
{
int maxSize  = 8 ;
int minSize = 5 ;
char[] chars = new char[62];
string a;
a = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890";
chars = a.ToCharArray();
int size  = maxSize ;
byte[] data = new byte[1];
RNGCryptoServiceProvider  crypto = new RNGCryptoServiceProvider();
crypto.GetNonZeroBytes(data) ;
size =  maxSize ;
data = new byte[size];
crypto.GetNonZeroBytes(data);
StringBuilder result = new StringBuilder(size) ;
foreach(byte b in data )
{ result.Append(chars^__b % (chars.Length - )>); }
 <span class="code-keyword">return result.ToString();
}

Analysis:

For lab testing purposes, I created 10,00,000 unique keys by using above three procedures and found the following results :

Generation Method<o:p>

Time Taken<o:p>

Number of Generated Keys<o:p>

Number of Duplicate Keys<o:p>

All Fixed Length Keys<o:p>

<o:p> 

Using DateTime and HashCode<o:p>

01.56 sec  <o:p>

10,00,000<o:p>

500131<o:p>

No<o:p>

<o:p> 

Using GUIDs and HashCode<o:p>

04.45 sec<o:p>

10,00,000<o:p>

113<o:p>

No<o:p>

<o:p> 

Using RNGCryptoServiceProvider and Character Masking<o:p>

<o:p> 

00.40 sec<o:p>

10,00,000<o:p>

0 (Wow!!)<o:p>

Yes<o:p>

<o:p> 


The above analysis shows that RNGCrypto with Character Masking is best method to generate Unique keys.

Note: The above research is for study purpose only. Yes there can be another methods which are better than the ones mentioned above.

 

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
United Arab Emirates United Arab Emirates
Altaf Al-Amin Najvani
Project Manager
Commercial Bank Of Dubai


Qualifications:
BS - Computer Science
Masters In Project Management
Masters In Business Administration

Certifications:
CISA - Certified Information Systems Auditor
ITIL (Foundation)
Microsoft Certified Technology Specialist (SQL Server 2005)
Microsoft Certified Technology Specialist (Web Applications)
Microsoft Certified Application Developer (.NET)
Microsoft Certified Solution Developer (.NET)

Comments and Discussions

 
GeneralMy vote of 5 Pin
shoebass21-Feb-12 21:27
shoebass21-Feb-12 21:27 
GeneralProblem with the code Pin
love_chopra127-Apr-11 2:01
love_chopra127-Apr-11 2:01 
GeneralKeeping things simple Pin
Harout Saryan23-Mar-11 15:54
Harout Saryan23-Mar-11 15:54 
GeneralMy vote of 5 Pin
Nariman Marvi11-Aug-10 0:43
Nariman Marvi11-Aug-10 0:43 
GeneralMy execution times are different [modified] Pin
roni schuetz17-Aug-09 21:45
roni schuetz17-Aug-09 21:45 
GeneralMy vote of 2 Pin
AntonioLopes19-May-09 18:49
AntonioLopes19-May-09 18:49 
GeneralThanks alot Pin
ammarcs15-Mar-09 12:30
ammarcs15-Mar-09 12:30 
GeneralRe: Thanks alot Pin
Altaf Al-Amin15-Mar-09 18:52
Altaf Al-Amin15-Mar-09 18:52 
Generalthanks for youre helpful guide Pin
sooarty18-Nov-08 1:51
sooarty18-Nov-08 1:51 
GeneralUniqueKey CS to VB Pin
jkirkerx17-Sep-08 8:59
professionaljkirkerx17-Sep-08 8:59 
GeneralRe: UniqueKey CS to VB Pin
800XL23-Nov-09 4:37
800XL23-Nov-09 4:37 
GeneralRe: UniqueKey CS to VB Pin
jkirkerx23-Nov-09 7:25
professionaljkirkerx23-Nov-09 7:25 
GeneralRe: UniqueKey CS to VB Pin
jkirkerx23-Nov-09 7:31
professionaljkirkerx23-Nov-09 7:31 
QuestionNumbers Only? Pin
migmb12-Aug-08 5:46
migmb12-Aug-08 5:46 
AnswerRe: Numbers Only? Pin
Altaf Al-Amin12-Aug-08 6:47
Altaf Al-Amin12-Aug-08 6:47 
GeneralThank you! Pin
LarsHB25-Jun-08 21:09
LarsHB25-Jun-08 21:09 
GeneralShort and instructive. Pin
BugMeNot ACCOUNT10-Apr-08 7:10
BugMeNot ACCOUNT10-Apr-08 7:10 
GeneralNice Article Pin
shouvik969-Apr-08 5:09
shouvik969-Apr-08 5:09 
GeneralRe: Nice Article Pin
sai_sss18-Jul-10 22:57
sai_sss18-Jul-10 22:57 
QuestionCan u help me???? Pin
shouvik968-Apr-08 1:01
shouvik968-Apr-08 1:01 
AnswerRe: Can u help me???? Pin
BugMeNot ACCOUNT10-Apr-08 7:06
BugMeNot ACCOUNT10-Apr-08 7:06 
GeneralWorks great, here are some more stats on the RNGCryptoServiceProvider and Character Masking Method Pin
acormier31-Mar-08 5:15
acormier31-Mar-08 5:15 
GeneralRe: Works great, here are some more stats on the RNGCryptoServiceProvider and Character Masking Method Pin
A-MEN4-Apr-08 0:03
A-MEN4-Apr-08 0:03 
Questionhow to generate unique key Pin
biswa4710-Aug-07 1:49
biswa4710-Aug-07 1:49 
GeneralSha1 or Md5 Pin
afterburn18-Jun-06 16:16
afterburn18-Jun-06 16: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.