1 write to _hashSizeInBytes
System.Security.Cryptography (1)
System\Security\Cryptography\LiteHash.Unix.cs (1)
194_hashSizeInBytes = Interop.Crypto.EvpMdSize(algorithm);
10 references to _hashSizeInBytes
System.Security.Cryptography (10)
System\Security\Cryptography\LiteHash.Unix.cs (10)
189public int HashSizeInBytes => _hashSizeInBytes; 196if (_hashSizeInBytes <= 0 || _hashSizeInBytes > Interop.Crypto.EVP_MAX_MD_SIZE) 198Debug.Fail($"Unexpected hash '{_hashSizeInBytes}' size from {nameof(Interop.Crypto.EvpMdSize)}."); 218Debug.Assert(destination.Length >= _hashSizeInBytes); 222Debug.Assert(length == _hashSizeInBytes); 223return _hashSizeInBytes; 228Debug.Assert(destination.Length >= _hashSizeInBytes); 232Debug.Assert(length == _hashSizeInBytes); 233return _hashSizeInBytes;