6 overrides of Append
System.IO.Hashing (6)
System\IO\Hashing\Crc32.cs (1)
57
public override void
Append
(ReadOnlySpan<byte> source)
System\IO\Hashing\Crc64.cs (1)
56
public override void
Append
(ReadOnlySpan<byte> source)
System\IO\Hashing\XxHash128.cs (1)
161
public override void
Append
(ReadOnlySpan<byte> source)
System\IO\Hashing\XxHash3.cs (1)
159
public override void
Append
(ReadOnlySpan<byte> source)
System\IO\Hashing\XxHash32.cs (1)
85
public override void
Append
(ReadOnlySpan<byte> source)
System\IO\Hashing\XxHash64.cs (1)
85
public 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)
89
Append
(new ReadOnlySpan<byte>(source));
315
public override void Write(byte[] buffer, int offset, int count) => hash.
Append
(buffer.AsSpan(offset, count));
318
hash.
Append
(
328
hash.
Append
(buffer.AsSpan(offset, count));
333
public override void Write(ReadOnlySpan<byte> buffer) => hash.
Append
(buffer);
337
hash.
Append
(buffer.Span);