9 references to HashData
System.Security.Cryptography (9)
System\Security\Cryptography\HMACMD5.cs (1)
113return HMACStatic<HMACTrait>.HashData(key, source);
System\Security\Cryptography\HMACSHA1.cs (1)
114return HMACStatic<HMACTrait>.HashData(key, source);
System\Security\Cryptography\HMACSHA256.cs (1)
106return HMACStatic<HMACTrait>.HashData(key, source);
System\Security\Cryptography\HMACSHA3_256.cs (1)
142return HMACStatic<HMACTrait>.HashData(key, source);
System\Security\Cryptography\HMACSHA3_384.cs (1)
142return HMACStatic<HMACTrait>.HashData(key, source);
System\Security\Cryptography\HMACSHA3_512.cs (1)
142return HMACStatic<HMACTrait>.HashData(key, source);
System\Security\Cryptography\HMACSHA384.cs (1)
123return HMACStatic<HMACTrait>.HashData(key, source);
System\Security\Cryptography\HMACSHA512.cs (1)
120return HMACStatic<HMACTrait>.HashData(key, source);
System\Security\Cryptography\HMACStatic.cs (1)
45return HashData(new ReadOnlySpan<byte>(key), new ReadOnlySpan<byte>(source));