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)
107
internal byte[] ValidationKeyInternal { get { RuntimeDataInitialize(); return (byte[])
_ValidationKey
.Clone(); } }
352
Buffer.BlockCopy( bKeysRandom, 0,
_ValidationKey
, 0, _AutoGenValidationKeySize);
356
Buffer.BlockCopy(HttpRuntime.s_autogenKeys, 0,
_ValidationKey
, 0, _AutoGenValidationKeySize);
367
if (
_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);
754
MachineKeySection.DestroyByteArray(
_ValidationKey
);