2 writes to _ValidationKey
System.Web (2)
Configuration\MachineKeySection.cs (2)
348_ValidationKey = new byte[_AutoGenValidationKeySize]; 365_ValidationKey = HexStringToByteArray(strKey);
13 references to _ValidationKey
System.Web (13)
Configuration\MachineKeySection.cs (13)
107internal byte[] ValidationKeyInternal { get { RuntimeDataInitialize(); return (byte[])_ValidationKey.Clone(); } } 352Buffer.BlockCopy( bKeysRandom, 0, _ValidationKey, 0, _AutoGenValidationKeySize); 356Buffer.BlockCopy(HttpRuntime.s_autogenKeys, 0, _ValidationKey, 0, _AutoGenValidationKeySize); 367if (_ValidationKey == null) 373_ValidationKey[0] = (byte)(dwCode & 0xff); 374_ValidationKey[1] = (byte)((dwCode & 0xff00) >> 8); 375_ValidationKey[2] = (byte)((dwCode & 0xff0000) >> 16); 376_ValidationKey[3] = (byte)((dwCode & 0xff000000) >> 24); 381_ValidationKey[4] = (byte)(dwCode & 0xff); 382_ValidationKey[5] = (byte)((dwCode & 0xff00) >> 8); 383_ValidationKey[6] = (byte)((dwCode & 0xff0000) >> 16); 384_ValidationKey[7] = (byte)((dwCode & 0xff000000) >> 24); 754MachineKeySection.DestroyByteArray(_ValidationKey);