8 implementations of HashSizeInBytes
System.Security.Cryptography (8)
System\Security\Cryptography\MD5.cs (1)
24static int IHashStatic.HashSizeInBytes => HashSizeInBytes;
System\Security\Cryptography\SHA1.cs (1)
23static int IHashStatic.HashSizeInBytes => HashSizeInBytes;
System\Security\Cryptography\SHA256.cs (1)
23static int IHashStatic.HashSizeInBytes => HashSizeInBytes;
System\Security\Cryptography\SHA3_256.cs (1)
23static int IHashStatic.HashSizeInBytes => HashSizeInBytes;
System\Security\Cryptography\SHA3_384.cs (1)
23static int IHashStatic.HashSizeInBytes => HashSizeInBytes;
System\Security\Cryptography\SHA3_512.cs (1)
23static int IHashStatic.HashSizeInBytes => HashSizeInBytes;
System\Security\Cryptography\SHA384.cs (1)
23static int IHashStatic.HashSizeInBytes => HashSizeInBytes;
System\Security\Cryptography\SHA512.cs (1)
23static int IHashStatic.HashSizeInBytes => HashSizeInBytes;
6 references to HashSizeInBytes
System.Security.Cryptography (6)
System\Security\Cryptography\HashStatic.cs (6)
33byte[] buffer = GC.AllocateUninitializedArray<byte>(THash.HashSizeInBytes); 53if (destination.Length < THash.HashSizeInBytes) 60Debug.Assert(bytesWritten == THash.HashSizeInBytes); 69if (destination.Length < THash.HashSizeInBytes) 87return LiteHashProvider.HashStream(THash.HashAlgorithmName, THash.HashSizeInBytes, source); 108if (destination.Length < THash.HashSizeInBytes)