From: mdw Date: Fri, 15 Oct 1999 21:08:46 +0000 (+0000) Subject: Change support for erroneous Base64 streams with length 1 mod 4. X-Git-Tag: 2.0.4~227 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/mLib/commitdiff_plain/a226592fef87488f817ee9c1a2a27b860550f6b5 Change support for erroneous Base64 streams with length 1 mod 4. --- diff --git a/base64.c b/base64.c index 10ce91e..6e5d3bf 100644 --- a/base64.c +++ b/base64.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: base64.c,v 1.3 1999/05/21 22:14:30 mdw Exp $ + * $Id: base64.c,v 1.4 1999/10/15 21:08:46 mdw Exp $ * * Base64 encoding and decoding. * @@ -30,6 +30,9 @@ /*----- Revision history --------------------------------------------------* * * $Log: base64.c,v $ + * Revision 1.4 1999/10/15 21:08:46 mdw + * Change support for erroneous Base64 streams with length 1 mod 4. + * * Revision 1.3 1999/05/21 22:14:30 mdw * Take advantage of the new dynamic string macros. * @@ -212,14 +215,24 @@ void base64_decode(base64_ctx *ctx, unsigned long acc = ctx->acc; unsigned qsz = ctx->qsz; - /* --- Now fiddle with everything else --- */ + /* --- Now fiddle with everything else --- * + * + * There's a bodge here for invalid encodings which have only one hextet + * in the final group. I'm not sure this is really worth having, but it + * might save some unexpected behaviour. (Not that you won't still get + * unexpected behaviour if the stream is completely empty, of course.) + */ - acc <<= 6 * (4 - qsz); - qsz *= 6; - while (qsz > 8) { - DPUTC(d, (acc >> 16) & 0xff); - acc <<= 8; - qsz -= 8; + if (qsz) { + acc <<= 6 * (4 - qsz); + qsz *= 6; + if (qsz < 8) + qsz = 8; + while (qsz >= 8) { + DPUTC(d, (acc >> 16) & 0xff); + acc <<= 8; + qsz -= 8; + } } /* --- That seems to be good enough --- */