From 5b58e95c0a7b956cf91d59fb837ce235c198d99d Mon Sep 17 00:00:00 2001 From: r4mos Date: Mon, 8 Sep 2025 16:58:31 +0200 Subject: [PATCH] Add Crockford's alphabet --- src/core/lib/Base32.mjs | 4 ++++ 1 file changed, 4 insertions(+) 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=", + }, ];