From 9bbef9054666bac04743c9305716fe8ba9d18366 Mon Sep 17 00:00:00 2001 From: Sean Parkinson Date: Mon, 7 Dec 2020 09:12:53 +1000 Subject: [PATCH] MP integer: fix map string for toradix and read_radix --- wolfcrypt/src/integer.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wolfcrypt/src/integer.c b/wolfcrypt/src/integer.c index 95c894353..fa13dfda5 100644 --- a/wolfcrypt/src/integer.c +++ b/wolfcrypt/src/integer.c @@ -5155,8 +5155,8 @@ LBL_U:mp_clear (&u); defined(DEBUG_WOLFSSL) || defined(OPENSSL_EXTRA) /* chars used in radix conversions */ -const char *mp_s_rmap = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ\ - abcdefghijklmnopqrstuvwxyz+/"; +const char *mp_s_rmap = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ" + "abcdefghijklmnopqrstuvwxyz+/"; #endif #if !defined(NO_DSA) || defined(HAVE_ECC)