9 references to HashData
System.Web (9)
Configuration\MachineKeySection.cs (5)
631byte[] hmac = HashData(bData, null, 0, bData.Length); 738hash = HashData(ab, null, 0, ab.Length); 795byte[] bHash = HashData(buf, modifier, start, length); 838byte[] bHash = HashData(buf, modifier, start, length - _HashSize); 1273byte[] bMac = HashData(bufHashed, null, 0, bufHashed.Length - _HashSize);
Security\CookieProtection.cs (1)
35byte[] bMac = MachineKeySection.HashData (buf, null, 0, count);
Security\FormsAuthentication.cs (1)
267byte[] bMac = MachineKeySection.HashData(bBlob, null, 0, bBlob.Length);
Security\MachineKey.cs (2)
41byte[] bHash = MachineKeySection.HashData(data, null, 0, data.Length); 101byte[] bHash = MachineKeySection.HashData(data, null, 0, data.Length);