1 Star 0 Fork 0

unitwork/iwechen-thrift

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Base64.h 1023 Bytes
一键复制 编辑 原始数据 按行查看 历史
wshy1121 提交于 2017-07-17 16:59 . add 初始版本提交
/** @file Base64.h
* @note Hikvision Digital Technology Co., Ltd. All Rights Reserved.
* @brief Base64编解码
*
* @author wangquancai
* @date 2015/11/11
* @note
*/
#ifndef __NODE_BASE64_H__
#define __NODE_BASE64_H__
#include <string>
class CBase64
{
public:
//编码表
static const char s_encodeTable[];
//解码表
static const char s_decodeTable[];
/*
** 编码
** param [in] pSrcData: 原始数据
** param [in] iSrcSize: 原始数据大小
** param [out] strDst: 编码后的数据
*/
void Encode(const unsigned char* pSrcData,int iSrcSize,std::string& strDst);
/*
** 解码
** param [in] pSrcData: 原始数据
** param [in] iSrcSize: 原始数据大小
** param [out] strDst: 解码后的数据
** param [out] iDstSize: 解码后的数据大小
** Note:解码后的大小不要通过string.size()计算
*/
void Decode(const char* pSrcData,int iSrcSize,std::string& strDst,int& iDstSize);
};
#endif
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/unitwork/iwechen-thrift.git
git@gitee.com:unitwork/iwechen-thrift.git
unitwork
iwechen-thrift
iwechen-thrift
master

搜索帮助