2 overrides of HashSizeInBytes
System.Security.Cryptography (2)
System\Security\Cryptography\HashProviderDispenser.Unix.cs (2)
139public override int HashSizeInBytes => _liteHash.HashSizeInBytes; 215public override int HashSizeInBytes => _liteHmac.HashSizeInBytes;
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)
254HashSizeValue = _hashProvider.HashSizeInBytes * 8;
System\Security\Cryptography\SHA1.cs (1)
245HashSizeValue = _hashProvider.HashSizeInBytes * 8;
System\Security\Cryptography\SHA1Managed.cs (1)
19HashSizeValue = _hashProvider.HashSizeInBytes * 8;
System\Security\Cryptography\SHA256.cs (1)
245HashSizeValue = _hashProvider.HashSizeInBytes * 8;
System\Security\Cryptography\SHA256Managed.cs (1)
19HashSizeValue = _hashProvider.HashSizeInBytes * 8;
System\Security\Cryptography\SHA3_256.cs (1)
300HashSizeValue = _hashProvider.HashSizeInBytes * 8;
System\Security\Cryptography\SHA3_384.cs (1)
301HashSizeValue = _hashProvider.HashSizeInBytes * 8;
System\Security\Cryptography\SHA3_512.cs (1)
300HashSizeValue = _hashProvider.HashSizeInBytes * 8;
System\Security\Cryptography\SHA384.cs (1)
244HashSizeValue = _hashProvider.HashSizeInBytes * 8;
System\Security\Cryptography\SHA384Managed.cs (1)
19HashSizeValue = _hashProvider.HashSizeInBytes * 8;
System\Security\Cryptography\SHA512.cs (1)
244HashSizeValue = _hashProvider.HashSizeInBytes * 8;
System\Security\Cryptography\SHA512Managed.cs (1)
19HashSizeValue = _hashProvider.HashSizeInBytes * 8;