2 writes to _DecryptionKey
System.Web (2)
Configuration\MachineKeySection.cs (2)
401_DecryptionKey = new byte[_AutoGenDecryptionKeySize]; 421_DecryptionKey = HexStringToByteArray(strKey);
13 references to _DecryptionKey
System.Web (13)
Configuration\MachineKeySection.cs (13)
108internal byte[] DecryptionKeyInternal { get { RuntimeDataInitialize(); return (byte[])_DecryptionKey.Clone(); } } 405Buffer.BlockCopy( bKeysRandom, _AutoGenValidationKeySize, _DecryptionKey, 0, _AutoGenDecryptionKeySize); 409Buffer.BlockCopy(HttpRuntime.s_autogenKeys, _AutoGenValidationKeySize, _DecryptionKey, 0, _AutoGenDecryptionKeySize); 423if (_DecryptionKey == null) 429_DecryptionKey[0] = (byte)(dwCode & 0xff); 430_DecryptionKey[1] = (byte)((dwCode & 0xff00) >> 8); 431_DecryptionKey[2] = (byte)((dwCode & 0xff0000) >> 16); 432_DecryptionKey[3] = (byte)((dwCode & 0xff000000) >> 24); 437_DecryptionKey[4] = (byte)(dwCode & 0xff); 438_DecryptionKey[5] = (byte)((dwCode & 0xff00) >> 8); 439_DecryptionKey[6] = (byte)((dwCode & 0xff0000) >> 16); 440_DecryptionKey[7] = (byte)((dwCode & 0xff000000) >> 24); 755MachineKeySection.DestroyByteArray(_DecryptionKey);