2009-01-03 22:22:43 +01:00
|
|
|
/*
|
|
|
|
* RFC 1521 base64 encoding/decoding
|
|
|
|
*
|
2020-08-07 13:07:28 +02:00
|
|
|
* Copyright The Mbed TLS Contributors
|
2015-09-04 14:21:07 +02:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2010-07-18 22:36:00 +02:00
|
|
|
*
|
2015-09-04 14:21:07 +02:00
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
|
|
* not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
2010-07-18 22:36:00 +02:00
|
|
|
*
|
2015-09-04 14:21:07 +02:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2009-01-03 22:22:43 +01:00
|
|
|
*
|
2015-09-04 14:21:07 +02:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
2009-01-03 22:22:43 +01:00
|
|
|
*/
|
|
|
|
|
2023-05-18 21:49:03 +02:00
|
|
|
#include <limits.h>
|
|
|
|
|
2020-06-03 01:43:33 +02:00
|
|
|
#include "common.h"
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_BASE64_C)
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-03-09 18:05:11 +01:00
|
|
|
#include "mbedtls/base64.h"
|
2021-11-15 16:18:54 +01:00
|
|
|
#include "constant_time_internal.h"
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-06-22 19:21:23 +02:00
|
|
|
#include <stdint.h>
|
2012-10-01 16:41:15 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_SELF_TEST)
|
2015-02-06 14:43:58 +01:00
|
|
|
#include <string.h>
|
2015-03-09 18:05:11 +01:00
|
|
|
#include "mbedtls/platform.h"
|
2015-04-08 12:49:31 +02:00
|
|
|
#endif /* MBEDTLS_SELF_TEST */
|
2014-02-01 22:50:26 +01:00
|
|
|
|
2009-01-03 22:22:43 +01:00
|
|
|
/*
|
|
|
|
* Encode a buffer into base64 format
|
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
int mbedtls_base64_encode(unsigned char *dst, size_t dlen, size_t *olen,
|
|
|
|
const unsigned char *src, size_t slen)
|
2009-01-03 22:22:43 +01:00
|
|
|
{
|
2011-04-24 10:57:21 +02:00
|
|
|
size_t i, n;
|
2009-01-03 22:22:43 +01:00
|
|
|
int C1, C2, C3;
|
|
|
|
unsigned char *p;
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if (slen == 0) {
|
2015-06-02 17:30:35 +02:00
|
|
|
*olen = 0;
|
2023-01-11 14:50:10 +01:00
|
|
|
return 0;
|
2015-01-28 17:49:26 +01:00
|
|
|
}
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
n = slen / 3 + (slen % 3 != 0);
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2023-05-18 21:49:03 +02:00
|
|
|
if (n > (SIZE_MAX - 1) / 4) {
|
|
|
|
*olen = SIZE_MAX;
|
2023-01-11 14:50:10 +01:00
|
|
|
return MBEDTLS_ERR_BASE64_BUFFER_TOO_SMALL;
|
2009-01-03 22:22:43 +01:00
|
|
|
}
|
|
|
|
|
2015-09-30 16:30:28 +02:00
|
|
|
n *= 4;
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if ((dlen < n + 1) || (NULL == dst)) {
|
2015-06-02 17:30:35 +02:00
|
|
|
*olen = n + 1;
|
2023-01-11 14:50:10 +01:00
|
|
|
return MBEDTLS_ERR_BASE64_BUFFER_TOO_SMALL;
|
2009-01-03 22:22:43 +01:00
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
n = (slen / 3) * 3;
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
for (i = 0, p = dst; i < n; i += 3) {
|
2009-01-03 22:22:43 +01:00
|
|
|
C1 = *src++;
|
|
|
|
C2 = *src++;
|
|
|
|
C3 = *src++;
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
*p++ = mbedtls_ct_base64_enc_char((C1 >> 2) & 0x3F);
|
|
|
|
*p++ = mbedtls_ct_base64_enc_char((((C1 & 3) << 4) + (C2 >> 4))
|
|
|
|
& 0x3F);
|
|
|
|
*p++ = mbedtls_ct_base64_enc_char((((C2 & 15) << 2) + (C3 >> 6))
|
|
|
|
& 0x3F);
|
|
|
|
*p++ = mbedtls_ct_base64_enc_char(C3 & 0x3F);
|
2009-01-03 22:22:43 +01:00
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if (i < slen) {
|
2009-01-03 22:22:43 +01:00
|
|
|
C1 = *src++;
|
2023-01-11 14:50:10 +01:00
|
|
|
C2 = ((i + 1) < slen) ? *src++ : 0;
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
*p++ = mbedtls_ct_base64_enc_char((C1 >> 2) & 0x3F);
|
|
|
|
*p++ = mbedtls_ct_base64_enc_char((((C1 & 3) << 4) + (C2 >> 4))
|
|
|
|
& 0x3F);
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if ((i + 1) < slen) {
|
|
|
|
*p++ = mbedtls_ct_base64_enc_char(((C2 & 15) << 2) & 0x3F);
|
|
|
|
} else {
|
|
|
|
*p++ = '=';
|
|
|
|
}
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
*p++ = '=';
|
|
|
|
}
|
|
|
|
|
2015-06-02 17:30:35 +02:00
|
|
|
*olen = p - dst;
|
2009-01-03 22:22:43 +01:00
|
|
|
*p = 0;
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
return 0;
|
2009-01-03 22:22:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Decode a base64-formatted buffer
|
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
int mbedtls_base64_decode(unsigned char *dst, size_t dlen, size_t *olen,
|
|
|
|
const unsigned char *src, size_t slen)
|
2009-01-03 22:22:43 +01:00
|
|
|
{
|
2021-07-28 14:20:06 +02:00
|
|
|
size_t i; /* index in source */
|
|
|
|
size_t n; /* number of digits or trailing = in source */
|
|
|
|
uint32_t x; /* value accumulator */
|
2021-07-30 12:56:21 +02:00
|
|
|
unsigned accumulated_digits = 0;
|
2021-07-28 14:20:06 +02:00
|
|
|
unsigned equals = 0;
|
|
|
|
int spaces_present = 0;
|
2009-01-03 22:22:43 +01:00
|
|
|
unsigned char *p;
|
|
|
|
|
2014-10-15 21:45:39 +02:00
|
|
|
/* First pass: check for validity and get output length */
|
2023-01-11 14:50:10 +01:00
|
|
|
for (i = n = 0; i < slen; i++) {
|
2014-10-15 21:45:39 +02:00
|
|
|
/* Skip spaces before checking for EOL */
|
2021-07-28 14:20:06 +02:00
|
|
|
spaces_present = 0;
|
2023-01-11 14:50:10 +01:00
|
|
|
while (i < slen && src[i] == ' ') {
|
2014-10-15 21:45:39 +02:00
|
|
|
++i;
|
2021-07-28 14:20:06 +02:00
|
|
|
spaces_present = 1;
|
2014-10-15 21:45:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Spaces at end of buffer are OK */
|
2023-01-11 14:50:10 +01:00
|
|
|
if (i == slen) {
|
2014-10-15 21:45:39 +02:00
|
|
|
break;
|
2023-01-11 14:50:10 +01:00
|
|
|
}
|
2014-10-15 21:45:39 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if ((slen - i) >= 2 &&
|
|
|
|
src[i] == '\r' && src[i + 1] == '\n') {
|
2009-01-03 22:22:43 +01:00
|
|
|
continue;
|
2023-01-11 14:50:10 +01:00
|
|
|
}
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if (src[i] == '\n') {
|
2009-01-03 22:22:43 +01:00
|
|
|
continue;
|
2023-01-11 14:50:10 +01:00
|
|
|
}
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2014-10-15 21:45:39 +02:00
|
|
|
/* Space inside a line is an error */
|
2023-01-11 14:50:10 +01:00
|
|
|
if (spaces_present) {
|
|
|
|
return MBEDTLS_ERR_BASE64_INVALID_CHARACTER;
|
|
|
|
}
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if (src[i] > 127) {
|
|
|
|
return MBEDTLS_ERR_BASE64_INVALID_CHARACTER;
|
2021-07-28 11:33:04 +02:00
|
|
|
}
|
2023-01-11 14:50:10 +01:00
|
|
|
|
|
|
|
if (src[i] == '=') {
|
|
|
|
if (++equals > 2) {
|
|
|
|
return MBEDTLS_ERR_BASE64_INVALID_CHARACTER;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (equals != 0) {
|
|
|
|
return MBEDTLS_ERR_BASE64_INVALID_CHARACTER;
|
|
|
|
}
|
|
|
|
if (mbedtls_ct_base64_dec_value(src[i]) < 0) {
|
|
|
|
return MBEDTLS_ERR_BASE64_INVALID_CHARACTER;
|
|
|
|
}
|
2021-07-28 11:33:04 +02:00
|
|
|
}
|
2009-01-03 22:22:43 +01:00
|
|
|
n++;
|
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if (n == 0) {
|
2015-10-05 01:26:36 +02:00
|
|
|
*olen = 0;
|
2023-01-11 14:50:10 +01:00
|
|
|
return 0;
|
2015-10-05 01:26:36 +02:00
|
|
|
}
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2017-02-02 09:46:53 +01:00
|
|
|
/* The following expression is to calculate the following formula without
|
|
|
|
* risk of integer overflow in n:
|
|
|
|
* n = ( ( n * 6 ) + 7 ) >> 3;
|
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
n = (6 * (n >> 3)) + ((6 * (n & 0x7) + 7) >> 3);
|
2021-07-28 14:20:06 +02:00
|
|
|
n -= equals;
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if (dst == NULL || dlen < n) {
|
2015-06-02 17:30:35 +02:00
|
|
|
*olen = n;
|
2023-01-11 14:50:10 +01:00
|
|
|
return MBEDTLS_ERR_BASE64_BUFFER_TOO_SMALL;
|
2009-01-03 22:22:43 +01:00
|
|
|
}
|
|
|
|
|
2021-07-28 14:20:06 +02:00
|
|
|
equals = 0;
|
2023-01-11 14:50:10 +01:00
|
|
|
for (x = 0, p = dst; i > 0; i--, src++) {
|
|
|
|
if (*src == '\r' || *src == '\n' || *src == ' ') {
|
2009-01-03 22:22:43 +01:00
|
|
|
continue;
|
2023-01-11 14:50:10 +01:00
|
|
|
}
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2021-07-28 14:20:06 +02:00
|
|
|
x = x << 6;
|
2023-01-11 14:50:10 +01:00
|
|
|
if (*src == '=') {
|
2021-07-28 14:20:06 +02:00
|
|
|
++equals;
|
2023-01-11 14:50:10 +01:00
|
|
|
} else {
|
|
|
|
x |= mbedtls_ct_base64_dec_value(*src);
|
|
|
|
}
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if (++accumulated_digits == 4) {
|
2021-07-30 12:56:21 +02:00
|
|
|
accumulated_digits = 0;
|
2023-01-11 14:50:10 +01:00
|
|
|
*p++ = MBEDTLS_BYTE_2(x);
|
|
|
|
if (equals <= 1) {
|
|
|
|
*p++ = MBEDTLS_BYTE_1(x);
|
|
|
|
}
|
|
|
|
if (equals <= 0) {
|
|
|
|
*p++ = MBEDTLS_BYTE_0(x);
|
|
|
|
}
|
2009-01-03 22:22:43 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-02 17:30:35 +02:00
|
|
|
*olen = p - dst;
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
return 0;
|
2009-01-03 22:22:43 +01:00
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_SELF_TEST)
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
static const unsigned char base64_test_dec[64] =
|
|
|
|
{
|
|
|
|
0x24, 0x48, 0x6E, 0x56, 0x87, 0x62, 0x5A, 0xBD,
|
|
|
|
0xBF, 0x17, 0xD9, 0xA2, 0xC4, 0x17, 0x1A, 0x01,
|
|
|
|
0x94, 0xED, 0x8F, 0x1E, 0x11, 0xB3, 0xD7, 0x09,
|
|
|
|
0x0C, 0xB6, 0xE9, 0x10, 0x6F, 0x22, 0xEE, 0x13,
|
|
|
|
0xCA, 0xB3, 0x07, 0x05, 0x76, 0xC9, 0xFA, 0x31,
|
|
|
|
0x6C, 0x08, 0x34, 0xFF, 0x8D, 0xC2, 0x6C, 0x38,
|
|
|
|
0x00, 0x43, 0xE9, 0x54, 0x97, 0xAF, 0x50, 0x4B,
|
|
|
|
0xD1, 0x41, 0xBA, 0x95, 0x31, 0x5A, 0x0B, 0x97
|
|
|
|
};
|
|
|
|
|
|
|
|
static const unsigned char base64_test_enc[] =
|
|
|
|
"JEhuVodiWr2/F9mixBcaAZTtjx4Rs9cJDLbpEG8i7hPK"
|
|
|
|
"swcFdsn6MWwINP+Nwmw4AEPpVJevUEvRQbqVMVoLlw==";
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Checkup routine
|
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
int mbedtls_base64_self_test(int verbose)
|
2009-01-03 22:22:43 +01:00
|
|
|
{
|
2011-04-24 10:57:21 +02:00
|
|
|
size_t len;
|
2013-06-24 19:03:14 +02:00
|
|
|
const unsigned char *src;
|
|
|
|
unsigned char buffer[128];
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if (verbose != 0) {
|
|
|
|
mbedtls_printf(" Base64 encoding test: ");
|
|
|
|
}
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2013-06-24 19:03:14 +02:00
|
|
|
src = base64_test_dec;
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if (mbedtls_base64_encode(buffer, sizeof(buffer), &len, src, 64) != 0 ||
|
|
|
|
memcmp(base64_test_enc, buffer, 88) != 0) {
|
|
|
|
if (verbose != 0) {
|
|
|
|
mbedtls_printf("failed\n");
|
|
|
|
}
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
return 1;
|
2009-01-03 22:22:43 +01:00
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if (verbose != 0) {
|
|
|
|
mbedtls_printf("passed\n Base64 decoding test: ");
|
|
|
|
}
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2013-06-24 19:03:14 +02:00
|
|
|
src = base64_test_enc;
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if (mbedtls_base64_decode(buffer, sizeof(buffer), &len, src, 88) != 0 ||
|
|
|
|
memcmp(base64_test_dec, buffer, 64) != 0) {
|
|
|
|
if (verbose != 0) {
|
|
|
|
mbedtls_printf("failed\n");
|
|
|
|
}
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
return 1;
|
2009-01-03 22:22:43 +01:00
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if (verbose != 0) {
|
|
|
|
mbedtls_printf("passed\n\n");
|
|
|
|
}
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
return 0;
|
2009-01-03 22:22:43 +01:00
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#endif /* MBEDTLS_SELF_TEST */
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#endif /* MBEDTLS_BASE64_C */
|