diff --git a/src/core/lib/Base32.mjs b/src/core/lib/Base32.mjs index 92b76eca7..c772dfca6 100644 --- a/src/core/lib/Base32.mjs +++ b/src/core/lib/Base32.mjs @@ -19,5 +19,9 @@ export const ALPHABET_OPTIONS = [ name: "Hex Extended", // https://www.rfc-editor.org/rfc/rfc4648#section-7 value: "0-9A-V=", }, + { + name: "Crockford's alphabet", // https://www.crockford.com/base32.html + value: "0123456789ABCDEFGHJKMNPQRSTVWXYZ=", + }, ];