You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Without dipping below the amount of entropy in a uuid.UUID4, what is the fewest number of base57-encoded characters we could encode to? Is this documented anywhere? If not, do you think it would be a useful thing to mention?
The text was updated successfully, but these errors were encountered:
Some simple math should get you the number of base57 digits you need to represent 128 bits: 128/log2(57) = 22 digits (which is the length of a shortuuid by default, but maybe that's not documented explicitly).
Without dipping below the amount of entropy in a
uuid.UUID4
, what is the fewest number of base57-encoded characters we could encode to? Is this documented anywhere? If not, do you think it would be a useful thing to mention?The text was updated successfully, but these errors were encountered: