C++中如何实现base64加密

avatar
作者
猴君
阅读量:0

在 C++ 中,可以使用第三方库或者手动实现 Base64 编码

  1. 首先,安装并包含 Base64 库。这里我们使用一个简单的 Base64 库,名为 “base64”。通过包管理器(如 vcpkg)安装该库:
vcpkg install base64 
  1. 然后,在代码中包含库头文件:
#include<iostream> #include<string> #include <base64.h> 
  1. 接下来,编写一个函数来执行 Base64 编码:
std::string base64_encode(const std::string& input) {     return base64_encode(reinterpret_cast<const unsigned char*>(input.c_str()), input.length()); } 
  1. 最后,在主函数中调用此函数进行编码:
int main() {     std::string input = "Hello, World!";     std::string encoded = base64_encode(input);     std::cout << "Base64 encoded: "<< encoded<< std::endl; // 输出:SGVsbG8sIFdvcmxkIQ==     return 0; } 

完整示例代码:

#include<iostream> #include<string> #include <base64.h>  std::string base64_encode(const std::string& input) {     return base64_encode(reinterpret_cast<const unsigned char*>(input.c_str()), input.length()); }  int main() {     std::string input = "Hello, World!";     std::string encoded = base64_encode(input);     std::cout << "Base64 encoded: "<< encoded<< std::endl; // 输出:SGVsbG8sIFdvcmxkIQ==     return 0; } 

注意:这个示例依赖于已经安装了 “base64” 库。如果没有安装,请按照上面的说明进行操作。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!