8 implementations of IHashStatic
System.Security.Cryptography (8)
System\Security\Cryptography\MD5.cs (1)
22private sealed class HashTrait : IHashStatic
System\Security\Cryptography\SHA1.cs (1)
21private sealed class HashTrait : IHashStatic
System\Security\Cryptography\SHA256.cs (1)
21private sealed class HashTrait : IHashStatic
System\Security\Cryptography\SHA3_256.cs (1)
21private sealed class HashTrait : IHashStatic
System\Security\Cryptography\SHA3_384.cs (1)
21private sealed class HashTrait : IHashStatic
System\Security\Cryptography\SHA3_512.cs (1)
21private sealed class HashTrait : IHashStatic
System\Security\Cryptography\SHA384.cs (1)
21private sealed class HashTrait : IHashStatic
System\Security\Cryptography\SHA512.cs (1)
21private sealed class HashTrait : IHashStatic
25 references to IHashStatic
System.Security.Cryptography (25)
System\Security\Cryptography\HashStatic.cs (1)
22internal static class HashStatic<THash> where THash : IHashStatic
System\Security\Cryptography\MD5.cs (3)
24static int IHashStatic.HashSizeInBytes => HashSizeInBytes; 25static string IHashStatic.HashAlgorithmName => HashAlgorithmNames.MD5; 29static bool IHashStatic.IsSupported => true;
System\Security\Cryptography\SHA1.cs (3)
23static int IHashStatic.HashSizeInBytes => HashSizeInBytes; 24static string IHashStatic.HashAlgorithmName => HashAlgorithmNames.SHA1; 25static bool IHashStatic.IsSupported => true;
System\Security\Cryptography\SHA256.cs (3)
23static int IHashStatic.HashSizeInBytes => HashSizeInBytes; 24static string IHashStatic.HashAlgorithmName => HashAlgorithmNames.SHA256; 25static bool IHashStatic.IsSupported => true;
System\Security\Cryptography\SHA3_256.cs (3)
23static int IHashStatic.HashSizeInBytes => HashSizeInBytes; 24static string IHashStatic.HashAlgorithmName => HashAlgorithmNames.SHA3_256; 25static bool IHashStatic.IsSupported => IsSupported;
System\Security\Cryptography\SHA3_384.cs (3)
23static int IHashStatic.HashSizeInBytes => HashSizeInBytes; 24static string IHashStatic.HashAlgorithmName => HashAlgorithmNames.SHA3_384; 25static bool IHashStatic.IsSupported => IsSupported;
System\Security\Cryptography\SHA3_512.cs (3)
23static int IHashStatic.HashSizeInBytes => HashSizeInBytes; 24static string IHashStatic.HashAlgorithmName => HashAlgorithmNames.SHA3_512; 25static bool IHashStatic.IsSupported => IsSupported;
System\Security\Cryptography\SHA384.cs (3)
23static int IHashStatic.HashSizeInBytes => HashSizeInBytes; 24static string IHashStatic.HashAlgorithmName => HashAlgorithmNames.SHA384; 25static bool IHashStatic.IsSupported => true;
System\Security\Cryptography\SHA512.cs (3)
23static int IHashStatic.HashSizeInBytes => HashSizeInBytes; 24static string IHashStatic.HashAlgorithmName => HashAlgorithmNames.SHA512; 25static bool IHashStatic.IsSupported => true;