Esempio n. 1
0
 protected override bool TryStaticOneShot(ReadOnlySpan <byte> source, Span <byte> destination, out int bytesWritten) =>
 XxHash32.TryHash(source, destination, out bytesWritten);
Esempio n. 2
0
 protected override byte[] StaticOneShot(byte[] source) => XxHash32.Hash(source);
Esempio n. 3
0
 protected override int StaticOneShot(ReadOnlySpan <byte> source, Span <byte> destination) =>
 XxHash32.Hash(source, destination);
Esempio n. 4
0
 protected override byte[] StaticOneShot(ReadOnlySpan <byte> source) => XxHash32.Hash(source);
Esempio n. 5
0
 public int XxHash32_BytesAsInt()
 => BitConverter.ToInt32(XxHash32.ComputeHash(MessageData).Hash, Zero);
Esempio n. 6
0
 public byte[] XxHash32_Bytes() => XxHash32.ComputeHash(MessageData).Hash;
Esempio n. 7
0
 public string XxHash32_AsHexString() => XxHash32.ComputeHash(MessageData).AsHexString();