9 references to HashData
System.Security.Cryptography (9)
System\Security\Cryptography\HashStatic.cs (1)
28return HashData(new ReadOnlySpan<byte>(source));
System\Security\Cryptography\MD5.cs (1)
71public static byte[] HashData(ReadOnlySpan<byte> source) => HashStatic<HashTrait>.HashData(source);
System\Security\Cryptography\SHA1.cs (1)
65public static byte[] HashData(ReadOnlySpan<byte> source) => HashStatic<HashTrait>.HashData(source);
System\Security\Cryptography\SHA256.cs (1)
64public static byte[] HashData(ReadOnlySpan<byte> source) => HashStatic<HashTrait>.HashData(source);
System\Security\Cryptography\SHA3_256.cs (1)
90public static byte[] HashData(ReadOnlySpan<byte> source) => HashStatic<HashTrait>.HashData(source);
System\Security\Cryptography\SHA3_384.cs (1)
90public static byte[] HashData(ReadOnlySpan<byte> source) => HashStatic<HashTrait>.HashData(source);
System\Security\Cryptography\SHA3_512.cs (1)
90public static byte[] HashData(ReadOnlySpan<byte> source) => HashStatic<HashTrait>.HashData(source);
System\Security\Cryptography\SHA384.cs (1)
64public static byte[] HashData(ReadOnlySpan<byte> source) => HashStatic<HashTrait>.HashData(source);
System\Security\Cryptography\SHA512.cs (1)
64public static byte[] HashData(ReadOnlySpan<byte> source) => HashStatic<HashTrait>.HashData(source);