ASP.NET machineKey Generator

This is an application that will generate a valid machineKey block with random, secure, hard-coded keys that you can paste inside the <system.web> in your web.config or machine.config file.

Hard-coded encryption and validation keys are needed if you have a web farm/web garden, if you use passwordFormat=Encrypted with ASP.NET 2.0’s Membership provider, or if you have certain ViewState issues. I discuss those reasons more in-depth in my blog posts about “Invalid Viewstate” errors and the ASP.NET Membership Encrypted passwordFormat, or you can also read my machineKey CodeProject article for more background information.

Below is a random set of keys, generated by this page. Go ahead and refresh this page to get a new set of keys.

ASP.NET 1.1 machineKey

<machineKey validationKey="5CCDE5D583F9A2DE829BDF6F4D5391BF210976E532EE5675F1FF82CE90913C3537BEA036811FE279261D1E5B6A1ACA6266A74B2EE477E64FA94B5CA5011106EE"
 decryptionKey="5AF804692AA385492BB10E5331BDD3318BB66793CF944C9F"
 validation="SHA1" />

ASP.NET 2.0 machineKey

<machineKey validationKey="A7B841D49961D155C06CE88F617C8A75F91D75795C97D38434FD78CB9A196652BB8D79A34C198F31D0EF9BA62CC7712F85A78EC8FA19F2B5F4545FFA875A3A42"
 decryptionKey="02605DEE01224E77D3F320B67DC802BA9F15C61AAA40AC2E1431F9053E433F1D"
 validation="SHA1" decryption="AES" />

If you want, you can also use the code below so you can generate the keys yourself:

using System;
using System.Text;
using System.Security;
using System.Security.Cryptography;

private void Button1_Click(object sender, System.EventArgs e)
{
	txtASPNET20.Text = getASPNET20machinekey();
	txtASPNET11.Text = getASPNET11machinekey();
}

public string getASPNET20machinekey()
{
	StringBuilder aspnet20machinekey = new StringBuilder();
	string key64byte = getRandomKey(64);
	string key32byte = getRandomKey(32);
	aspnet20machinekey.Append("\n");
	return aspnet20machinekey.ToString();
}

public string getASPNET11machinekey()
{
	StringBuilder aspnet11machinekey = new StringBuilder();
	string key64byte = getRandomKey(64);
	string key24byte = getRandomKey(24);

	aspnet11machinekey.Append("\n");
	return aspnet11machinekey.ToString();
}

public string getRandomKey(int bytelength)
{
	int len = bytelength * 2;
	byte[] buff = new byte[len / 2];
	RNGCryptoServiceProvider rng = new RNGCryptoServiceProvider();
	rng.GetBytes(buff);
	StringBuilder sb = new StringBuilder(len);
	for (int i = 0; i < buff.Length; i++)
		sb.Append(string.Format("{0:X2}", buff[i]));
	return sb.ToString();
}