From: Lady Date: Mon, 22 May 2023 02:50:19 +0000 (-0700) Subject: Make base32 handling less forgiving X-Git-Tag: 0.3.1^0 X-Git-Url: https://git.ladys.computer/Pisces/commitdiff_plain/6824f52e3d692f16442008ebd933a5c1890f2c8c?ds=inline;hp=6824f52e3d692f16442008ebd933a5c1890f2c8c Make base32 handling less forgiving Ordinarily, one only encounters base32 strings of length 0, 2, 4, 5, or 7 characters (mod 8). If it is of length 3 or 6, the final character is in the middle of an incomplete byte. As with length 1, this should probably throw an error, as the other alternative is to entirely ignore the character. (It already did throw an error before this change, but unintentionally.) ---