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