From c63b1a4591a0a54d3ccd449573f408739ea29af2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roman=20Smr=C5=BE?= Date: Sun, 31 Jan 2021 21:13:19 +0100 Subject: Storage: hexadecimal encoding of binary record items --- src/base64.h | 107 ----------------------------------------------------------- 1 file changed, 107 deletions(-) delete mode 100644 src/base64.h (limited to 'src/base64.h') diff --git a/src/base64.h b/src/base64.h deleted file mode 100644 index 324a5dd..0000000 --- a/src/base64.h +++ /dev/null @@ -1,107 +0,0 @@ -#pragma once - -#include -#include -#include -#include - -namespace { namespace base64 { - - const static char encodeLookup[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; - const static char padCharacter = '='; - - std::string encode(const std::vector & input) - { - std::string encoded; - encoded.reserve(((input.size()/3) + (input.size() % 3 > 0)) * 4); - uint32_t temp; - auto cursor = input.begin(); - for (size_t i = 0; i < input.size() / 3; i++) - { - temp = (*cursor++) << 16; // Convert to big endian - temp += (*cursor++) << 8; - temp += (*cursor++); - encoded.append(1, encodeLookup[(temp & 0x00FC0000) >> 18]); - encoded.append(1, encodeLookup[(temp & 0x0003F000) >> 12]); - encoded.append(1, encodeLookup[(temp & 0x00000FC0) >> 6 ]); - encoded.append(1, encodeLookup[(temp & 0x0000003F) ]); - } - switch (input.size() % 3) - { - case 1: - temp = (*cursor++) << 16; // Convert to big endian - encoded.append(1, encodeLookup[(temp & 0x00FC0000) >> 18]); - encoded.append(1, encodeLookup[(temp & 0x0003F000) >> 12]); - encoded.append(2, padCharacter); - break; - case 2: - temp = (*cursor++) << 16; // Convert to big endian - temp += (*cursor++) << 8; - encoded.append(1, encodeLookup[(temp & 0x00FC0000) >> 18]); - encoded.append(1, encodeLookup[(temp & 0x0003F000) >> 12]); - encoded.append(1, encodeLookup[(temp & 0x00000FC0) >> 6 ]); - encoded.append(1, padCharacter); - break; - } - return encoded; - } - - std::vector decode(const std::string & input) - { - if (input.length() % 4) // Sanity check - throw std::runtime_error("Non-Valid base64!"); - - size_t padding = 0; - if (input.length()) { - if (input[input.length() - 1] == padCharacter) - padding++; - if (input[input.length() - 2] == padCharacter) - padding++; - } - - // Setup a vector to hold the result - std::vector decoded; - decoded.reserve(((input.length()/4)*3) - padding); - uint32_t temp = 0; // Holds decoded quanta - auto cursor = input.begin(); - while (cursor < input.end()) - { - for (size_t quantumPosition = 0; quantumPosition < 4; quantumPosition++) - { - temp <<= 6; - if (*cursor >= 0x41 && *cursor <= 0x5A) // This area will need tweaking if - temp |= *cursor - 0x41; // you are using an alternate alphabet - else if (*cursor >= 0x61 && *cursor <= 0x7A) - temp |= *cursor - 0x47; - else if (*cursor >= 0x30 && *cursor <= 0x39) - temp |= *cursor + 0x04; - else if (*cursor == 0x2B) - temp |= 0x3E; // change to 0x2D for URL alphabet - else if (*cursor == 0x2F) - temp |= 0x3F; // change to 0x5F for URL alphabet - else if (*cursor == padCharacter) // pad - { - switch (input.end() - cursor) - { - case 1: //One pad character - decoded.push_back((temp >> 16) & 0x000000FF); - decoded.push_back((temp >> 8 ) & 0x000000FF); - return decoded; - case 2: //Two pad characters - decoded.push_back((temp >> 10) & 0x000000FF); - return decoded; - default: - throw std::runtime_error("Invalid Padding in Base 64!"); - } - } else - throw std::runtime_error("Non-Valid Character in Base 64!"); - cursor++; - } - decoded.push_back((temp >> 16) & 0x000000FF); - decoded.push_back((temp >> 8 ) & 0x000000FF); - decoded.push_back((temp ) & 0x000000FF); - } - return decoded; - } - -} } -- cgit v1.2.3