9 references to s_autogenKeys
System.Web (9)
Configuration\MachineKeySection.cs (2)
356
Buffer.BlockCopy(HttpRuntime.
s_autogenKeys
, 0, _ValidationKey, 0, _AutoGenValidationKeySize);
409
Buffer.BlockCopy(HttpRuntime.
s_autogenKeys
, _AutoGenValidationKeySize, _DecryptionKey, 0, _AutoGenDecryptionKeySize);
HttpRuntime.cs (6)
1353
byte[] bKeysRandom = new byte[
s_autogenKeys
.Length];
1354
byte[] bKeysStored = new byte[
s_autogenKeys
.Length];
1368
Buffer.BlockCopy(bKeysStored, 0,
s_autogenKeys
, 0,
s_autogenKeys
.Length);
1370
Buffer.BlockCopy(bKeysRandom, 0,
s_autogenKeys
, 0,
s_autogenKeys
.Length);
Security\Cryptography\MachineKeyMasterKeyProvider.cs (1)
65
_autogenKeys = new CryptographicKey(HttpRuntime.
s_autogenKeys
);