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
"Uses Crockford's base32 for better efficiency and readability (5 bits per character)"
"Crockford's Base32 is used as shown. This alphabet excludes the letters I, L, O, and U to avoid confusion and abuse."
However it is not exactly clear does this mean only using the character set 0123456789ABCDEFGHJKMNPQRSTVWXYZ or does it mean using also the Crockford base32 features such as treating i and l as 1, treating o as 0 and ignoring hyphens in the string?
The text was updated successfully, but these errors were encountered:
This part of the spec can be better written. The reference JS implementation does not use the other Crockford base32 features, it only uses the reduced character set.
The spec says:
"Uses Crockford's base32 for better efficiency and readability (5 bits per character)"
"Crockford's Base32 is used as shown. This alphabet excludes the letters I, L, O, and U to avoid confusion and abuse."
However it is not exactly clear does this mean only using the character set
0123456789ABCDEFGHJKMNPQRSTVWXYZ
or does it mean using also the Crockford base32 features such as treatingi
andl
as1
, treatingo
as0
and ignoring hyphens in the string?The text was updated successfully, but these errors were encountered: