65.9K
CodeProject is changing. Read more.
Home

Machine Key Generator

starIconstarIcon
emptyStarIcon
starIcon
emptyStarIconemptyStarIcon

2.69/5 (10 votes)

Sep 5, 2006

viewsIcon

57605

downloadIcon

1523

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

// 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)

//
// 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:

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.