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)
108
internal byte[] DecryptionKeyInternal { get { RuntimeDataInitialize(); return (byte[])
_DecryptionKey
.Clone(); } }
405
Buffer.BlockCopy( bKeysRandom, _AutoGenValidationKeySize,
_DecryptionKey
, 0, _AutoGenDecryptionKeySize);
409
Buffer.BlockCopy(HttpRuntime.s_autogenKeys, _AutoGenValidationKeySize,
_DecryptionKey
, 0, _AutoGenDecryptionKeySize);
423
if (
_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);
755
MachineKeySection.DestroyByteArray(
_DecryptionKey
);