XxHash3
Provides an implementation of the XXH3 hash algorithm for generating a 64-bit hash.
                
public XxHash3()
Initializes a new instance of the  XxHash3 class using the default seed value 0.
Initializes a new instance of the  XxHash3 class using the specified seed.
Computes the XXH3 hash of the provided source data.
Computes the XXH3 hash of the provided data using the provided seed.
Computes the XXH3 hash of the provided source data using the optionally provided seed.
Computes the XXH3 hash of the provided source data into the provided destination using the optionally provided seed.
Computes the XXH3 hash of the provided data.
public static bool TryHash(ReadOnlySpan<byte> source, Span<byte> destination, out int bytesWritten, long seed = 0)
Attempts to compute the XXH3 hash of the provided source data into the provided destination using the optionally provided seed.
Gets the current computed hash value without modifying accumulated state.