1 override of HashSizeInBytes
System.Security.Cryptography (1)
System\Security\Cryptography\HashProviderCng.cs (1)
144public sealed override int HashSizeInBytes => _hashSize;
18 references to HashSizeInBytes
System.Security.Cryptography (18)
System\Security\Cryptography\HashProvider.cs (3)
42byte[] ret = new byte[HashSizeInBytes]; 45Debug.Assert(written == HashSizeInBytes); 52if (destination.Length < HashSizeInBytes)
System\Security\Cryptography\HMACCommon.cs (2)
53public int HashSizeInBits => _hMacProvider.HashSizeInBytes * 8; 54public int HashSizeInBytes => _hMacProvider.HashSizeInBytes;
System\Security\Cryptography\IncrementalHash.cs (1)
35HashLengthInBytes = _hash.HashSizeInBytes;
System\Security\Cryptography\MD5.cs (1)
206HashSizeValue = _hashProvider.HashSizeInBytes * 8;
System\Security\Cryptography\SHA1.cs (1)
194HashSizeValue = _hashProvider.HashSizeInBytes * 8;
System\Security\Cryptography\SHA1Managed.cs (1)
19HashSizeValue = _hashProvider.HashSizeInBytes * 8;
System\Security\Cryptography\SHA256.cs (1)
194HashSizeValue = _hashProvider.HashSizeInBytes * 8;
System\Security\Cryptography\SHA256Managed.cs (1)
19HashSizeValue = _hashProvider.HashSizeInBytes * 8;
System\Security\Cryptography\SHA3_256.cs (1)
237HashSizeValue = _hashProvider.HashSizeInBytes * 8;
System\Security\Cryptography\SHA3_384.cs (1)
238HashSizeValue = _hashProvider.HashSizeInBytes * 8;
System\Security\Cryptography\SHA3_512.cs (1)
237HashSizeValue = _hashProvider.HashSizeInBytes * 8;
System\Security\Cryptography\SHA384.cs (1)
193HashSizeValue = _hashProvider.HashSizeInBytes * 8;
System\Security\Cryptography\SHA384Managed.cs (1)
19HashSizeValue = _hashProvider.HashSizeInBytes * 8;
System\Security\Cryptography\SHA512.cs (1)
193HashSizeValue = _hashProvider.HashSizeInBytes * 8;
System\Security\Cryptography\SHA512Managed.cs (1)
19HashSizeValue = _hashProvider.HashSizeInBytes * 8;