1 instantiation of XxHash128
System.IO.Hashing (1)
System\IO\Hashing\XxHash128.cs (1)
49
public XxHash128 Clone() =>
new
(_state);
11 references to XxHash128
aspire (2)
Certificates\NativeCertificateToolRunner.cs (1)
246
var hash = Convert.ToHexString(
XxHash128
.Hash(pemContents)).ToLowerInvariant();
Projects\GuestAppHostProject.cs (1)
2255
var bundleHash = Convert.ToHexString(
XxHash128
.Hash(bundleContents)).ToLowerInvariant();
Aspire.Cli.Tests (2)
Certificates\NativeCertificateToolRunnerTests.cs (1)
98
var hash = Convert.ToHexString(
XxHash128
.Hash(pemBytes)).ToLowerInvariant();
Projects\GuestAppHostProjectTests.cs (1)
1656
var expectedHash = Convert.ToHexString(
XxHash128
.Hash(expectedBundleContents)).ToLowerInvariant();
Aspire.Hosting.Foundry (1)
HostedAgent\AzureHostedAgentResource.cs (1)
295
byte[] hash =
XxHash128
.Hash(
Microsoft.DotNet.Cli.Utils (1)
Uuid.cs (1)
31
var hashResult =
XxHash128
.Hash(streamToHash); // This is just used for generating a named pipe so we don't need a cryptographic hash
System.IO.Hashing (5)
System\IO\Hashing\XxHash128.cs (4)
30
/// <summary>Initializes a new instance of the <see cref="
XxHash128
"/> class using the default seed value 0.</summary>
35
/// <summary>Initializes a new instance of the <see cref="
XxHash128
"/> class using the specified seed.</summary>
41
/// <summary>Initializes a new instance of the <see cref="
XxHash128
"/> class using the state from another instance.</summary>
49
public
XxHash128
Clone() => new(_state);
System\IO\Hashing\XxHashShared.cs (1)
18
/// <summary>Shared implementation of the XXH3 hash algorithm for 64-bit in <see cref="XxHash3"/> and <see cref="
XxHash128
"/> version.</summary>