6 writes to s_oSymAlgoDecryption
System.Web (6)
Configuration\MachineKeySection.cs (6)
885s_oSymAlgoDecryption = CryptoAlgorithms.CreateTripleDES(); 888s_oSymAlgoDecryption = CryptoAlgorithms.CreateDES(); 891s_oSymAlgoDecryption = CryptoAlgorithms.CreateAes(); 895s_oSymAlgoDecryption = CryptoAlgorithms.CreateDES(); 897s_oSymAlgoDecryption = CryptoAlgorithms.CreateAes(); 1185s_oSymAlgoDecryption = SymmetricAlgorithm.Create(Decryption.Substring(ALGO_PREFIX.Length));
6 references to s_oSymAlgoDecryption
System.Web (6)
Configuration\MachineKeySection.cs (6)
902if (s_oSymAlgoDecryption == null) // Shouldn't happen! 926SetKeyOnSymAlgorithm(s_oSymAlgoDecryption, dKey); 927_IVLengthDecryption = RoundupNumBitsToNumBytes(s_oSymAlgoDecryption.KeySize); 954SymmetricAlgorithm algo = (legacyMode ? s_oSymAlgoLegacy : (useValidationSymAlgo ? s_oSymAlgoValidation : s_oSymAlgoDecryption)); 1191if (s_oSymAlgoDecryption == null) 1196_AutoGenDecryptionKeySize = RoundupNumBitsToNumBytes(s_oSymAlgoDecryption.KeySize);