1 write to HashLengthInBytes
System.IO.Hashing (1)
System\IO\Hashing\NonCryptographicHashAlgorithm.cs (1)
40HashLengthInBytes = hashLengthInBytes;
23 references to HashLengthInBytes
System.IO.Hashing (23)
System\IO\Hashing\NonCryptographicHashAlgorithm.cs (23)
66/// <see cref="HashLengthInBytes"/> bytes to <paramref name="destination"/>. 72/// down to be exactly <see cref="HashLengthInBytes"/> in length. 141byte[] ret = new byte[HashLengthInBytes]; 160if (destination.Length < HashLengthInBytes) 166GetCurrentHashCore(destination.Slice(0, HashLengthInBytes)); 167bytesWritten = HashLengthInBytes; 178/// which is always <see cref="HashLengthInBytes"/>. 181/// <paramref name="destination"/> is shorter than <see cref="HashLengthInBytes"/>. 185if (destination.Length < HashLengthInBytes) 190GetCurrentHashCore(destination.Slice(0, HashLengthInBytes)); 191return HashLengthInBytes; 202byte[] ret = new byte[HashLengthInBytes]; 222if (destination.Length < HashLengthInBytes) 228GetHashAndResetCore(destination.Slice(0, HashLengthInBytes)); 229bytesWritten = HashLengthInBytes; 240/// which is always <see cref="HashLengthInBytes"/>. 243/// <paramref name="destination"/> is shorter than <see cref="HashLengthInBytes"/>. 247if (destination.Length < HashLengthInBytes) 252GetHashAndResetCore(destination.Slice(0, HashLengthInBytes)); 253return HashLengthInBytes; 264/// <see cref="HashLengthInBytes"/> bytes to <paramref name="destination"/>. 270/// down to be exactly <see cref="HashLengthInBytes"/> in length. 281Debug.Assert(destination.Length == HashLengthInBytes);