2 overrides of HashSizeInBytes
System.Security.Cryptography (2)
System\Security\Cryptography\HashProviderDispenser.Unix.cs (2)
139
public override int
HashSizeInBytes
=> _liteHash.HashSizeInBytes;
215
public override int
HashSizeInBytes
=> _liteHmac.HashSizeInBytes;
18 references to HashSizeInBytes
System.Security.Cryptography (18)
System\Security\Cryptography\HashProvider.cs (3)
42
byte[] ret = new byte[
HashSizeInBytes
];
45
Debug.Assert(written ==
HashSizeInBytes
);
52
if (destination.Length <
HashSizeInBytes
)
System\Security\Cryptography\HMACCommon.cs (2)
53
public int HashSizeInBits => _hMacProvider.
HashSizeInBytes
* 8;
54
public int HashSizeInBytes => _hMacProvider.
HashSizeInBytes
;
System\Security\Cryptography\IncrementalHash.cs (1)
35
HashLengthInBytes = _hash.
HashSizeInBytes
;
System\Security\Cryptography\MD5.cs (1)
254
HashSizeValue = _hashProvider.
HashSizeInBytes
* 8;
System\Security\Cryptography\SHA1.cs (1)
245
HashSizeValue = _hashProvider.
HashSizeInBytes
* 8;
System\Security\Cryptography\SHA1Managed.cs (1)
19
HashSizeValue = _hashProvider.
HashSizeInBytes
* 8;
System\Security\Cryptography\SHA256.cs (1)
245
HashSizeValue = _hashProvider.
HashSizeInBytes
* 8;
System\Security\Cryptography\SHA256Managed.cs (1)
19
HashSizeValue = _hashProvider.
HashSizeInBytes
* 8;
System\Security\Cryptography\SHA3_256.cs (1)
300
HashSizeValue = _hashProvider.
HashSizeInBytes
* 8;
System\Security\Cryptography\SHA3_384.cs (1)
301
HashSizeValue = _hashProvider.
HashSizeInBytes
* 8;
System\Security\Cryptography\SHA3_512.cs (1)
300
HashSizeValue = _hashProvider.
HashSizeInBytes
* 8;
System\Security\Cryptography\SHA384.cs (1)
244
HashSizeValue = _hashProvider.
HashSizeInBytes
* 8;
System\Security\Cryptography\SHA384Managed.cs (1)
19
HashSizeValue = _hashProvider.
HashSizeInBytes
* 8;
System\Security\Cryptography\SHA512.cs (1)
244
HashSizeValue = _hashProvider.
HashSizeInBytes
* 8;
System\Security\Cryptography\SHA512Managed.cs (1)
19
HashSizeValue = _hashProvider.
HashSizeInBytes
* 8;