This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /// <summary> | |
| /// Provides methods to create deterministic (name-based) GUIDs following | |
| /// <a href="https://datatracker.ietf.org/doc/html/rfc4122">RFC 4122</a> specifications. | |
| /// </summary> | |
| public static class DeterministicGuid | |
| { | |
| private const int STACK_THRESHOLD = 1024; // 1 KB for UTF-8 bytes | |
| private const int REQUIRED_GUID_BYTE_LENGTH = 16; | |
| /// <summary> |