fix decode base64
Some checks failed
linux-arm-gcc / linux-gcc-arm (push) Failing after 2m33s
linux-mips64-gcc / linux-gcc-mips64el (Debug) (push) Successful in 1m59s
linux-mips64-gcc / linux-gcc-mips64el (Release) (push) Successful in 2m1s
linux-x64-gcc / linux-gcc (Debug) (push) Successful in 1m51s
linux-x64-gcc / linux-gcc (Release) (push) Successful in 1m56s
linux-arm-gcc / linux-gcc-armhf (push) Failing after 23m30s

This commit is contained in:
tqcq 2024-04-01 09:35:38 +08:00
parent 7ab4331cb8
commit 8af0855224

View File

@ -12,7 +12,7 @@ base64_decode_value(char value_in)
= {62, -1, -1, -1, 63, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, -1, -1, -1, -2, -1, -1, -1, 0, 1, 2, 3, 4,
5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -1, -1, -1, -1, -1, -1,
26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51};
static const size_t decoding_size = sizeof(decoding);
static const int decoding_size = sizeof(decoding) / sizeof(int);
value_in -= 43;
if (value_in < 0 || value_in > decoding_size) return -1;
return decoding[(int) value_in];