XstarS.GuidGenerators
1.0.1
.NET 6.0
This package targets .NET 6.0. The package is compatible with this framework or higher.
.NET Core 3.1
This package targets .NET Core 3.1. The package is compatible with this framework or higher.
.NET Standard 2.0
This package targets .NET Standard 2.0. The package is compatible with this framework or higher.
.NET Framework 4.6.1
This package targets .NET Framework 4.6.1. The package is compatible with this framework or higher.
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package XstarS.GuidGenerators --version 1.0.1
NuGet\Install-Package XstarS.GuidGenerators -Version 1.0.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="XstarS.GuidGenerators" Version="1.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add XstarS.GuidGenerators --version 1.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: XstarS.GuidGenerators, 1.0.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install XstarS.GuidGenerators as a Cake Addin #addin nuget:?package=XstarS.GuidGenerators&version=1.0.1 // Install XstarS.GuidGenerators as a Cake Tool #tool nuget:?package=XstarS.GuidGenerators&version=1.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
.NET GUID Generator
Provides RFC 4122 UUID compliant GUID generators for .NET platform.
RFC 4122 UUID Standard
RFC 4122 defines the following five versions of UUID:
- Version 1: The time-based version, contains 60-bit timestamp and 12-bit MAC address
- Version 2: DCE Security version, contains 28-bit timestamp, 12-bit MAC address and 32-bit local ID
- Version 3: The name-based version, using MD5 hashing to compute the hash of the namespace and name
- Version 4: The randomly or pseudo-andomly generated version, equivalent to
Guid.NewGuid()
in .NET - Version 5: The name-based version, using SHA-1 hashing to compute the hash of the namespace and name
There is also a special nil UUID, which is equivalent to Guid.Empty
in .NET.
GUID Generator Library Usage
Get Generator Instance by Static Properties
using XNetEx.Guids;
using XNetEx.Guids.Generators;
// time-based GUID generation.
var guidGenV1 = GuidGenerator.Version1;
var guidV1 = guidGenV1.NewGuid();
// name-based GUID generation.
var guidGenV5 = GuidGenerator.Version5;
var guidV5 = guidGenV5.NewGuid(GuidNamespaces.Dns, "github.com");
Get Generator Instance by the Factory Method
using XNetEx.Guids;
using XNetEx.Guids.Generators;
// time-based GUID generation.
var guidGenV1 = GuidGenerator.OfVersion(GuidVersion.Version1);
var guidV1 = guidGenV1.NewGuid();
// name-based GUID generation.
var guidGenV5 = GuidGenerator.OfVersion(GuidVersion.Version5);
var guidV5 = guidGenV5.NewGuid(GuidNamespaces.Dns, "github.com");
Performance Benchmark
BenchmarkDotNet=v0.13.1, OS=Windows 10.0.22000
AMD Ryzen 7 5800H with Radeon Graphics, 1 CPU, 16 logical and 8 physical cores
.NET SDK=6.0.301
[Host] : .NET 6.0.6 (6.0.622.26707), X64 RyuJIT
DefaultJob : .NET 6.0.6 (6.0.622.26707), X64 RyuJIT
Method | GuidCount | Mean | StdDev | Ratio | RatioSD |
---|---|---|---|---|---|
GuidNewGuid |
1 | 45.730 ns | 0.6073 ns | 1.00 | 0.00 |
EmptyGenerate |
1 | 3.303 ns | 0.0242 ns | 0.07 | 0.00 |
GuidV1Generate |
1 | 52.571 ns | 0.6960 ns | 1.15 | 0.02 |
GuidV2Generate |
1 | 70.437 ns | 2.0033 ns | 1.55 | 0.05 |
GuidV3Generate |
1 | 292.193 ns | 1.8137 ns | 6.39 | 0.10 |
GuidV4Generate |
1 | 17.686 ns | 0.0571 ns | 0.39 | 0.01 |
GuidV5Generate |
1 | 298.274 ns | 5.0662 ns | 6.53 | 0.16 |
GuidNewGuid |
1000 | 45,503.427 ns | 88.4931 ns | 1.00 | 0.00 |
EmptyGenerate |
1000 | 1,154.960 ns | 2.1231 ns | 0.03 | 0.00 |
GuidV1Generate |
1000 | 50,888.715 ns | 735.9581 ns | 1.12 | 0.02 |
GuidV2Generate |
1000 | 67,488.634 ns | 2,209.6733 ns | 1.49 | 0.06 |
GuidV3Generate |
1000 | 290,308.876 ns | 2,142.5288 ns | 6.38 | 0.04 |
GuidV4Generate |
1000 | 15,928.203 ns | 70.8751 ns | 0.35 | 0.00 |
GuidV5Generate |
1000 | 288,628.431 ns | 1,988.7368 ns | 6.34 | 0.04 |
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 is compatible. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 is compatible. |
.NET Framework | net461 is compatible. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 is compatible. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETCoreApp 3.1
- System.Security.Principal.Windows (>= 4.0.0)
-
.NETFramework 4.6.1
- No dependencies.
-
.NETFramework 4.7.2
- No dependencies.
-
.NETStandard 2.0
- System.Security.Principal.Windows (>= 4.0.0)
-
.NETStandard 2.1
- System.Security.Principal.Windows (>= 4.0.0)
-
net6.0
- No dependencies.
NuGet packages (1)
Showing the top 1 NuGet packages that depend on XstarS.GuidGenerators:
Package | Downloads |
---|---|
XstarS.GuidModule
Provides RFC 4122/9562 compliant GUID operations for F#. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated | |
---|---|---|---|
2.4.1 | 111 | 10/10/2024 | |
2.4.0 | 188 | 5/12/2024 | |
2.4.0-preview | 143 | 4/20/2024 | |
2.3.1 | 170 | 3/24/2024 | |
2.3.0 | 327 | 2/24/2024 | |
2.2.1 | 294 | 2/8/2024 | |
2.2.0 | 144 | 1/26/2024 | |
2.1.2 | 156 | 1/22/2024 | |
2.1.1 | 159 | 1/20/2024 | |
2.1.0 | 165 | 1/12/2024 | |
2.0.0 | 204 | 12/24/2023 | |
2.0.0-rc-19 | 170 | 12/22/2023 | |
2.0.0-rc-16 | 191 | 12/12/2023 | |
2.0.0-rc-15 | 164 | 12/6/2023 | |
2.0.0-rc-14 | 185 | 11/26/2023 | |
2.0.0-rc-12.5 | 103 | 10/15/2023 | |
2.0.0-rc-12 | 142 | 10/15/2023 | |
2.0.0-rc-00 | 186 | 7/15/2023 | |
2.0.0-preview-04.5 | 88 | 6/4/2023 | |
2.0.0-preview-04 | 199 | 5/28/2023 | |
2.0.0-preview-03.8 | 78 | 5/20/2023 | |
2.0.0-preview-03.5 | 76 | 5/14/2023 | |
2.0.0-preview-03 | 205 | 4/15/2023 | |
2.0.0-preview-02.5 | 102 | 3/26/2023 | |
2.0.0-preview-02 | 203 | 3/4/2023 | |
2.0.0-preview-01 | 218 | 2/12/2023 | |
1.14.1 | 104 | 10/10/2024 | |
1.14.0 | 154 | 5/12/2024 | |
1.14.0-preview | 135 | 4/20/2024 | |
1.13.0 | 171 | 2/24/2024 | |
1.12.1 | 166 | 2/8/2024 | |
1.12.0 | 141 | 1/26/2024 | |
1.11.2 | 145 | 1/22/2024 | |
1.11.1 | 138 | 1/20/2024 | |
1.11.0 | 137 | 1/12/2024 | |
1.10.0 | 181 | 12/24/2023 | |
1.9.5 | 172 | 12/22/2023 | |
1.9.1 | 219 | 12/12/2023 | |
1.9.0 | 201 | 12/6/2023 | |
1.8.0 | 200 | 11/26/2023 | |
1.7.8 | 209 | 10/15/2023 | |
1.7.5 | 252 | 6/4/2023 | |
1.7.1 | 224 | 5/28/2023 | |
1.7.0 | 215 | 5/20/2023 | |
1.6.0 | 219 | 5/13/2023 | |
1.5.0 | 449 | 2/5/2023 | |
1.4.0 | 477 | 1/21/2023 | |
1.3.1 | 480 | 1/15/2023 | |
1.3.0 | 483 | 12/31/2022 | |
1.2.0 | 696 | 9/30/2022 | |
1.1.0 | 692 | 8/5/2022 | |
1.0.1 | 967 | 7/5/2022 | |
1.0.0 | 532 | 7/3/2022 |