1 write to _hashSizeInBytes
System.Security.Cryptography (1)
System\Security\Cryptography\LiteHash.Unix.cs (1)
121_hashSizeInBytes = Interop.Crypto.EvpMdSize(algorithm);
9 references to _hashSizeInBytes
System.Security.Cryptography (9)
System\Security\Cryptography\LiteHash.Unix.cs (9)
114public int HashSizeInBytes => _hashSizeInBytes; 123if (_hashSizeInBytes <= 0 || _hashSizeInBytes > Interop.Crypto.EVP_MAX_MD_SIZE) 125Debug.Fail($"Unexpected hash '{_hashSizeInBytes}' size from {nameof(Interop.Crypto.EvpMdSize)}."); 145Debug.Assert(destination.Length >= _hashSizeInBytes); 150Debug.Assert(length == _hashSizeInBytes); 151return _hashSizeInBytes; 163Debug.Assert(length == _hashSizeInBytes); 164return _hashSizeInBytes;