4 references to EncryptOrDecryptData
System.Web (4)
Configuration\MachineKeySection.cs (1)
470
return
EncryptOrDecryptData
(fEncrypt, buf, modifier, start, length, useValidationSymAlgo, useLegacyMode, ivType, !AppSettings.UseLegacyEncryption);
Security\MachineKey.cs (2)
51
data = MachineKeySection.
EncryptOrDecryptData
(true, data, null, 0, data.Length, false, false, IVType.Random, !AppSettings.UseLegacyMachineKeyEncryption);
85
data = MachineKeySection.
EncryptOrDecryptData
(false, data, null, 0, data.Length, false, false, IVType.Random, !AppSettings.UseLegacyMachineKeyEncryption);
Security\MembershipAdapter.cs (1)
44
return MachineKeySection.
EncryptOrDecryptData
(encrypt, buffer, (byte[])null, 0, buffer.Length, false /* useValidationSymAlgo */, useLegacyMode, IVType.None, false /*Sign*/);