91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

Base64編碼在C++中的具體應用

c++
小樊
84
2024-09-12 21:28:21
欄目: 編程語言

Base64編碼是一種將二進制數據轉換為ASCII字符串的方法,主要用于在文本協議(如HTTP、SMTP等)中傳輸二進制數據

  1. 包含頭文件:首先需要包含使用Base64編碼所需的頭文件。在C++中,可以使用<iostream><string>頭文件。
#include<iostream>
#include<string>
  1. 編寫Base64編碼函數:接下來,編寫一個將字符串轉換為Base64編碼的函數。這里是一個簡單的實現:
std::string base64_encode(const std::string& input) {
    const std::string base64_chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
    std::string encoded;
    int i = 0;
    int j = 0;
    unsigned char char_array_3[3];
    unsigned char char_array_4[4];

    for (unsigned int i = 0; i< input.size(); i++) {
        char_array_3[i % 3] = input[i];
        if ((i + 1) % 3 == 0) {
            char_array_4[0] = (char_array_3[0] & 0xfc) >> 2;
            char_array_4[1] = ((char_array_3[0] & 0x03) << 4) + ((char_array_3[1] & 0xf0) >> 4);
            char_array_4[2] = ((char_array_3[1] & 0x0f) << 2) + ((char_array_3[2] & 0xc0) >> 6);
            char_array_4[3] = char_array_3[2] & 0x3f;

            for (int j = 0; j < 4; j++) {
                encoded += base64_chars[char_array_4[j]];
            }
        }
    }

    if (i % 3 != 0) {
        for (int j = i % 3; j < 3; j++) {
            char_array_3[j] = '\0';
        }

        char_array_4[0] = (char_array_3[0] & 0xfc) >> 2;
        char_array_4[1] = ((char_array_3[0] & 0x03) << 4) + ((char_array_3[1] & 0xf0) >> 4);
        char_array_4[2] = ((char_array_3[1] & 0x0f) << 2) + ((char_array_3[2] & 0xc0) >> 6);
        char_array_4[3] = char_array_3[2] & 0x3f;

        for (int j = 0; j < (i % 3) + 1; j++) {
            encoded += base64_chars[char_array_4[j]];
        }

        while (i % 3 != 0) {
            encoded += '=';
            i++;
        }
    }

    return encoded;
}
  1. 編寫Base64解碼函數:同樣地,編寫一個將Base64編碼的字符串解碼為原始字符串的函數。這里是一個簡單的實現:
std::string base64_decode(const std::string& encoded) {
    const std::string base64_chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
    std::string decoded;
    int i = 0;
    int j = 0;
    int in_ = 0;
    unsigned char char_array_4[4], char_array_3[3];

    for (unsigned int i = 0; i< encoded.size(); i++) {
        if (encoded[i] == '=') {
            break;
        }

        in_ = base64_chars.find(encoded[i]);
        if (in_ == -1) {
            throw std::runtime_error("Invalid Base64 character");
        }

        char_array_4[i % 4] = in_;
        if ((i + 1) % 4 == 0) {
            char_array_3[0] = (char_array_4[0] << 2) + ((char_array_4[1] & 0x30) >> 4);
            char_array_3[1] = ((char_array_4[1] & 0xf) << 4) + ((char_array_4[2] & 0x3c) >> 2);
            char_array_3[2] = ((char_array_4[2] & 0x3) << 6) + char_array_4[3];

            for (int j = 0; j < 3; j++) {
                decoded += char_array_3[j];
            }
        }
    }

    if (i % 4 != 0) {
        for (int j = i % 4; j < 4; j++) {
            char_array_4[j] = 0;
        }

        char_array_3[0] = (char_array_4[0] << 2) + ((char_array_4[1] & 0x30) >> 4);
        char_array_3[1] = ((char_array_4[1] & 0xf) << 4) + ((char_array_4[2] & 0x3c) >> 2);
        char_array_3[2] = ((char_array_4[2] & 0x3) << 6) + char_array_4[3];

        for (int j = 0; j < (i % 4) - 1; j++) {
            decoded += char_array_3[j];
        }
    }

    return decoded;
}
  1. 使用Base64編碼和解碼函數:現在可以使用編寫的Base64編碼和解碼函數來處理字符串了。例如:
int main() {
    std::string input = "Hello, World!";
    std::string encoded = base64_encode(input);
    std::string decoded = base64_decode(encoded);

    std::cout << "Input: "<< input<< std::endl;
    std::cout << "Encoded: "<< encoded<< std::endl;
    std::cout << "Decoded: "<< decoded<< std::endl;

    return 0;
}

這個示例將輸出:

Input: Hello, World!
Encoded: SGVsbG8sIFdvcmxkIQ==
Decoded: Hello, World!

這就是在C++中使用Base64編碼的基本方法。請注意,這些示例僅用于演示目的,實際項目中可能需要更健壯的實現。

0
睢宁县| 原平市| 常宁市| 萨迦县| 嘉义市| 乳源| 寿阳县| 遵化市| 平定县| 治多县| 牟定县| 沐川县| 疏附县| 惠州市| 普定县| 多伦县| 竹山县| 宁夏| 宁德市| 商南县| 卢氏县| 余庆县| 泾源县| 马鞍山市| 蒙阴县| 靖州| 陈巴尔虎旗| 秦安县| 屯门区| 武安市| 平山县| 财经| 鹤庆县| 兴业县| 黔东| 保康县| 蚌埠市| 乌兰察布市| 太湖县| 徐汇区| 巴楚县|