Skip to content

Commit

Permalink
Merge pull request #2618 from seven1240/b64-decode
Browse files Browse the repository at this point in the history
[core] fix base64 decoded size when encoded string contains padding =
  • Loading branch information
anthmFS authored Oct 9, 2024
2 parents c402ce1 + ef3bd2d commit a891067
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/switch_utils.c
Original file line number Diff line number Diff line change
Expand Up @@ -1076,7 +1076,7 @@ SWITCH_DECLARE(switch_size_t) switch_b64_decode(const char *in, char *out, switc
l64[(int) switch_b64_table[i]] = (char) i;
}

for (ip = in; ip && *ip; ip++) {
for (ip = in; ip && *ip && (*ip != '='); ip++) {
c = l64[(int) *ip];
if (c == -1) {
continue;
Expand Down
43 changes: 43 additions & 0 deletions tests/unit/switch_utils.c
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,49 @@ FST_TEST_BEGIN(b64)
}
FST_TEST_END()

FST_TEST_BEGIN(b64_pad2)
{
switch_size_t size;
char str[] = {0, 0, 0, 0};
unsigned char b64_str[128];
char decoded_str[128];
int i;
switch_status_t status = switch_b64_encode((unsigned char *)str, sizeof(str), b64_str, sizeof(b64_str));
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_INFO, "b64_str: %s\n", b64_str);
fst_check(status == SWITCH_STATUS_SUCCESS);
fst_check_string_equals((const char *)b64_str, "AAAAAA==");

size = switch_b64_decode((const char *)b64_str, decoded_str, sizeof(decoded_str));
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_INFO, "decoded_str: %s\n", decoded_str);
fst_check_string_equals(decoded_str, str);
fst_check(size == sizeof(str) + 1);
for (i = 0; i < sizeof(str); i++) {
fst_check(decoded_str[i] == str[i]);
}
}
FST_TEST_END()

FST_TEST_BEGIN(b64_pad1)
{
switch_size_t size;
char str[] = {0, 0, 0, 0, 0};
unsigned char b64_str[128];
char decoded_str[128];
int i;
switch_status_t status = switch_b64_encode((unsigned char *)str, sizeof(str), b64_str, sizeof(b64_str));
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_INFO, "b64_str: %s\n", b64_str);
fst_check(status == SWITCH_STATUS_SUCCESS);
fst_check_string_equals((const char *)b64_str, "AAAAAAA=");

size = switch_b64_decode((const char *)b64_str, decoded_str, sizeof(decoded_str));
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_INFO, "decoded_str: %s\n", decoded_str);
fst_check_string_equals(decoded_str, str);
fst_check(size == sizeof(str) + 1);
for (i = 0; i < sizeof(str); i++) {
fst_check(decoded_str[i] == str[i]);
}
}
FST_TEST_END()

FST_SUITE_END()

Expand Down

0 comments on commit a891067

Please sign in to comment.