From 03ec822c974d9dac95809503c99c0b385cbb09b0 Mon Sep 17 00:00:00 2001 From: Nicolas Favre-Felix Date: Wed, 10 Jul 2019 13:04:06 -0700 Subject: [PATCH] Avoid new lines in basic auth pre-computation --- b64/cencode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/b64/cencode.c b/b64/cencode.c index a8c8fee..40f1c88 100644 --- a/b64/cencode.c +++ b/b64/cencode.c @@ -7,7 +7,7 @@ For details, see http://sourceforge.net/projects/libb64 #include "cencode.h" -const int CHARS_PER_LINE = 72; +const int CHARS_PER_LINE = 4096; void base64_init_encodestate(base64_encodestate* state_in) {