-
It would be great to support arbitrary encodings if a user supplied their own dictionary.
-
The use case for Base32 is to provide something that's easier to write down and re-enter correctly - otherwise you'd _always_ use base64. [Base-N Base32 does not accomplish this](https://en.wikipedia.…
-
_[Original issue](https://code.google.com/p/guava-libraries/issues/detail?id=1528) created by **harningt** on 2013-09-11 at 06:36 PM_
---
The alphabet produced by Douglas Crockford for base32 has so…
-
Please : why did you use the U instead of S ?
The crockford alpahbeth is : `0123456789abcdefghjkmnpqrstvwxyz`
The one you use is : `0123456789abcdefghjkmnpqrtuvwxyz`
Not the S is not present in y…
-
> If the bit-length of the number to be encoded is not a multiple of 5 bits, then zero-extend the number to make its bit-length a multiple of 5.
>
> ⸺ https://www.crockford.com/base32.html
```jav…
-
The recent addition of displaying `bytea` values in Crockford Base32 is great. Would it also be possible to do the same for `uuid` values? Since UUID and ULID are byte-compatible, it's becoming common…
-
[`base32-encode`](https://www.npmjs.com/package/base32-encode) and [`base32-decode`](https://www.npmjs.com/package/base32-decode) would make it easy to add thorough `base32` support. Would you be open…
-
https://en.wikipedia.org/wiki/Base32#Crockford's_Base32 suggests that the encoded string should only use upper case characters.
-
Hi! I'm writing a new Ruby library for handling ULID in these days.
Now I’m testing other implementations examples in https://github.com/kachick/ruby-ulid/issues/53.
And I have found weird example…
-
I want to encode using Crockford Base32 as I'm implementing the [Package Family Name algorithm](https://marcinotorowski.com/2021/12/19/calculating-hash-part-of-msix-package-family-name) but I'm unsure…