6 overrides of Append
System.IO.Hashing (6)
System\IO\Hashing\Crc32.cs (1)
57public override void Append(ReadOnlySpan<byte> source)
System\IO\Hashing\Crc64.cs (1)
56public override void Append(ReadOnlySpan<byte> source)
System\IO\Hashing\XxHash128.cs (1)
161public override void Append(ReadOnlySpan<byte> source)
System\IO\Hashing\XxHash3.cs (1)
159public override void Append(ReadOnlySpan<byte> source)
System\IO\Hashing\XxHash32.cs (1)
85public override void Append(ReadOnlySpan<byte> source)
System\IO\Hashing\XxHash64.cs (1)
85public override void Append(ReadOnlySpan<byte> source)
7 references to Append
Aspire.Hosting (1)
Utils\HashDigestStream.cs (1)
26_hashAlgorithm.Append(buffer.AsSpan(offset, count));
System.IO.Hashing (6)
System\IO\Hashing\NonCryptographicHashAlgorithm.cs (6)
89Append(new ReadOnlySpan<byte>(source)); 315public override void Write(byte[] buffer, int offset, int count) => hash.Append(buffer.AsSpan(offset, count)); 318hash.Append( 328hash.Append(buffer.AsSpan(offset, count)); 333public override void Write(ReadOnlySpan<byte> buffer) => hash.Append(buffer); 337hash.Append(buffer.Span);