OpinionatedUids 1.0.0
dotnet add package OpinionatedUids --version 1.0.0
NuGet\Install-Package OpinionatedUids -Version 1.0.0
<PackageReference Include="OpinionatedUids" Version="1.0.0" />
paket add OpinionatedUids --version 1.0.0
#r "nuget: OpinionatedUids, 1.0.0"
// Install OpinionatedUids as a Cake Addin #addin nuget:?package=OpinionatedUids&version=1.0.0 // Install OpinionatedUids as a Cake Tool #tool nuget:?package=OpinionatedUids&version=1.0.0
Opinionated Uids
What does it do?
Generates unique identifiers conforming to the Guid CLR type. We avoid the term "Guid" in our naming conventions, to avoid confusion with more standard ways of generating globally unique identifiers. Collision risk varies greatly, depending on the configuration.
How does it work?
We start with 16 cryptographically random bytes, then apply configured transforms (if any), then use configured judges (if any), to determine if a candidate identifier is acceptable.
If any judge deems a candidate identifier not acceptable, we try again, using a new cryptographically random identifier.
How to use?
This test code demonstrates a configuration with one opinion: the first byte of a Guid (when expressed in byte array form) should not be equal to 0x11 (decimal 17).
[Test]
[Repeat(10_000)]
public void TestSimpleProhibition()
{
var services = new ServiceCollection();
var buf = new byte[16] { 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
var prefixspec = new Guid(buf);
var judge = new ProhibitedUidPrefix(prefixspec, 1); // second argument is length of the prefix to consider
services.AddOpinionatedUids(judge);
using (var sp = services.BuildServiceProvider())
{
var maker = sp.GetRequiredService<IOpinionatedUidMaker>();
var uid = maker.NewUid();
Assert.That(uid.ToByteArray().First(), Is.Not.EqualTo(0x11));
}
}
Raw Guid Source
Raw Guid values are generated via the IRawGuidMaker interface, prior to being transformed and judged (as configured). The default implementation (RawGuidMaker) uses cryptographically random System.Security.Cryptography.RandomNumberGenerator. Note that Guid.NewGuid is not used anywhere in the process. If desired, an alternative IRawGuidMaker can be registered. An alternative IRawGuidMaker implemenation could use Guid.NewGuid, or some other means, to generate starting point identifiers.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. 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 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. 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. |
-
.NETStandard 2.0
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.0.0 | 406 | 6/24/2021 |