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. 153byte[] ret = new byte[HashLengthInBytes]; 172if (destination.Length < HashLengthInBytes) 178GetCurrentHashCore(destination.Slice(0, HashLengthInBytes)); 179bytesWritten = HashLengthInBytes; 190/// which is always <see cref="HashLengthInBytes"/>. 193/// <paramref name="destination"/> is shorter than <see cref="HashLengthInBytes"/>. 197if (destination.Length < HashLengthInBytes) 202GetCurrentHashCore(destination.Slice(0, HashLengthInBytes)); 203return HashLengthInBytes; 214byte[] ret = new byte[HashLengthInBytes]; 234if (destination.Length < HashLengthInBytes) 240GetHashAndResetCore(destination.Slice(0, HashLengthInBytes)); 241bytesWritten = HashLengthInBytes; 252/// which is always <see cref="HashLengthInBytes"/>. 255/// <paramref name="destination"/> is shorter than <see cref="HashLengthInBytes"/>. 259if (destination.Length < HashLengthInBytes) 264GetHashAndResetCore(destination.Slice(0, HashLengthInBytes)); 265return HashLengthInBytes; 276/// <see cref="HashLengthInBytes"/> bytes to <paramref name="destination"/>. 282/// down to be exactly <see cref="HashLengthInBytes"/> in length. 293Debug.Assert(destination.Length == HashLengthInBytes);