Click here to Skip to main content
15,885,084 members
Articles / Web Development / ASP.NET

Machine Key Generator

Rate me:
Please Sign up or sign in to vote.
2.69/5 (10 votes)
5 Sep 2006 56.9K   1.5K   21   2
This module is a simple windows application that generates machine keys for web farm

Sample screenshot

Introduction

The <machineKey> Element configures keys to use for encryption and decryption of forms authentication cookie data and viewstate data, and for verification of out-of-process session state identification. This section can be declared at the machine, site, and application levels, but not at the subdirectory level. Using this pattern allows your application to save your authentication ticket, in away that you can travel around different websites that have the same machine key using this ticket.

Machine Key

Machine key comes in the following format:

<system.web>

<machineKey 

validationKey='9E7338046712DC5407684161A2B7F67AE74FF304B005B4B32587BB6BAF89C1FB99E886D5637A771912362466ED9DD4FA9C9BCEBB682918E2536542DD85427FD9'   

decryptionKey='EF975B401B6327D5D773435F2F0172B81CD19C7EB515FA58'   

validation='SHA1'/>

system.web>

The Code

C#
// This line defines an object from RNGCryptoServiceProvider calss that generates a random number
// using the implementation provided by the crytographic service provider
// static RNGCryptoServiceProvider randomCryptoString = new RNGCryptoServiceProvider();

And to generate some random data using RNG (Random Number Generator)

C#
//
// 64 bytes validation key is max size supported by ASP.NET
// 24 bytes decryption key is max size supported by ASP.NET
//
static byte[] GetRandomCryptoData(int keySize)
{
    byte[] randomData = new byte[keySize];
    randomCryptoString.GetBytes(randomData);
    return randomData;
}

Finally, we need to convert random generated data into hexadecimal:

C#
static string ConvertKeyToHexadecimal(byte[] key)
{
    StringBuilder hexaString = new StringBuilder(); for (int i = 0; i < key.Length; ++i)
{
    hexaString.Append(String.Format("{0:X2}", key[i]));
}
    return hexaString.ToString();
}

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
Architect Cubic Art
Jordan Jordan
Mainly working with SharePoint, C# (Web & Desktop) and Microsofts Technologies in general ...

Comments and Discussions

 
QuestionHow shall I use this in Web Farm ? Pin
Prash24-Oct-06 21:14
Prash24-Oct-06 21:14 
AnswerRe: How shall I use this in Web Farm ? Pin
Ahmad Al-Najjar6-Dec-06 5:35
Ahmad Al-Najjar6-Dec-06 5:35 

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.