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. 144byte[] ret = new byte[HashLengthInBytes]; 163if (destination.Length < HashLengthInBytes) 169GetCurrentHashCore(destination.Slice(0, HashLengthInBytes)); 170bytesWritten = HashLengthInBytes; 181/// which is always <see cref="HashLengthInBytes"/>. 184/// <paramref name="destination"/> is shorter than <see cref="HashLengthInBytes"/>. 188if (destination.Length < HashLengthInBytes) 193GetCurrentHashCore(destination.Slice(0, HashLengthInBytes)); 194return HashLengthInBytes; 205byte[] ret = new byte[HashLengthInBytes]; 225if (destination.Length < HashLengthInBytes) 231GetHashAndResetCore(destination.Slice(0, HashLengthInBytes)); 232bytesWritten = HashLengthInBytes; 243/// which is always <see cref="HashLengthInBytes"/>. 246/// <paramref name="destination"/> is shorter than <see cref="HashLengthInBytes"/>. 250if (destination.Length < HashLengthInBytes) 255GetHashAndResetCore(destination.Slice(0, HashLengthInBytes)); 256return HashLengthInBytes; 267/// <see cref="HashLengthInBytes"/> bytes to <paramref name="destination"/>. 273/// down to be exactly <see cref="HashLengthInBytes"/> in length. 284Debug.Assert(destination.Length == HashLengthInBytes);