https://github.com/enbrea/enbrea.guidfactory
A .NET library providing a factory class for generating deterministic GUID values
https://github.com/enbrea/enbrea.guidfactory
dotnet enbrea guid library
Last synced: 6 months ago
JSON representation
A .NET library providing a factory class for generating deterministic GUID values
- Host: GitHub
- URL: https://github.com/enbrea/enbrea.guidfactory
- Owner: enbrea
- License: mit
- Created: 2022-04-30T13:11:51.000Z (about 4 years ago)
- Default Branch: develop
- Last Pushed: 2025-12-11T16:17:46.000Z (7 months ago)
- Last Synced: 2026-01-04T23:26:25.475Z (6 months ago)
- Topics: dotnet, enbrea, guid, library
- Language: PowerShell
- Homepage:
- Size: 29.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://www.nuget.org/packages/Enbrea.GuidFactory/)

# ENBREA GuidFactory
A .NET library for for generating deterministic GUID values. See [RFC 4122](https://www.ietf.org/rfc/rfc4122.txt) for algorithm details.
+ Supports .NET 10, .NET 9 and .NET 8-
+ This library is based on existing code from the following [blog article](https://faithlife.codes/blog/2011/04/generating_a_deterministic_guid/).
## Installation
```
dotnet add package Enbrea.GuidFactory
```
## Example
``` csharp
Guid guid = GuidGenerator.Create(GuidGenerator.DnsNamespace, "www.enbrea.org");
```
## Can I help?
Yes, that would be much appreciated. The best way to help is to post a response via the Issue Tracker and/or submit a Pull Request.