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