8 implementations of HashAlgorithmName
System.Security.Cryptography (8)
System\Security\Cryptography\MD5.cs (1)
25static string IHashStatic.HashAlgorithmName => HashAlgorithmNames.MD5;
System\Security\Cryptography\SHA1.cs (1)
24static string IHashStatic.HashAlgorithmName => HashAlgorithmNames.SHA1;
System\Security\Cryptography\SHA256.cs (1)
24static string IHashStatic.HashAlgorithmName => HashAlgorithmNames.SHA256;
System\Security\Cryptography\SHA3_256.cs (1)
24static string IHashStatic.HashAlgorithmName => HashAlgorithmNames.SHA3_256;
System\Security\Cryptography\SHA3_384.cs (1)
24static string IHashStatic.HashAlgorithmName => HashAlgorithmNames.SHA3_384;
System\Security\Cryptography\SHA3_512.cs (1)
24static string IHashStatic.HashAlgorithmName => HashAlgorithmNames.SHA3_512;
System\Security\Cryptography\SHA384.cs (1)
24static string IHashStatic.HashAlgorithmName => HashAlgorithmNames.SHA384;
System\Security\Cryptography\SHA512.cs (1)
24static string IHashStatic.HashAlgorithmName => HashAlgorithmNames.SHA512;
5 references to HashAlgorithmName
System.Security.Cryptography (5)
System\Security\Cryptography\HashStatic.cs (5)
59bytesWritten = HashProviderDispenser.OneShotHashProvider.HashData(THash.HashAlgorithmName, source, destination); 76return LiteHashProvider.HashStream(THash.HashAlgorithmName, source, destination); 87return LiteHashProvider.HashStream(THash.HashAlgorithmName, THash.HashSizeInBytes, source); 98return LiteHashProvider.HashStreamAsync(THash.HashAlgorithmName, source, cancellationToken); 116THash.HashAlgorithmName,