Skip to content

Commit c58770e

Browse files
authored
feat: add Max UUID constant (#149)
add Max uuid
1 parent 4d47f8e commit c58770e

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

hash.go

+6
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,12 @@ var (
1717
NameSpaceOID = Must(Parse("6ba7b812-9dad-11d1-80b4-00c04fd430c8"))
1818
NameSpaceX500 = Must(Parse("6ba7b814-9dad-11d1-80b4-00c04fd430c8"))
1919
Nil UUID // empty UUID, all zeros
20+
21+
// The Max UUID is special form of UUID that is specified to have all 128 bits set to 1.
22+
Max = UUID{
23+
0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
24+
0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
25+
}
2026
)
2127

2228
// NewHash returns a new UUID derived from the hash of space concatenated with

0 commit comments

Comments
 (0)