base64.h

/********************************************************************
文件名 : Base64.h
描  述 : Base64编码,解码
版  权 :
作  者 :
修改记录:日期              修改人  修改内容2014-01-04 13:31    创建
********************************************************************/
#ifndef BASE_BASE64_H_
#define BASE_BASE64_H_#ifdef __cplusplus
extern "C" {#endif#define BASE64_BUF_TOO_SMALL        -1
#define BASE64_INVALID_DATA         -2/*** \brief          Encode a buffer into base64 format** \param dst      destination buffer* \param dlen     size of the buffer* \param src      source buffer* \param slen     amount of data to be encoded** \return         0 if successful, or BASE64_BUF_TOO_SMALL.*                 *dlen is always updated to reflect the amount*                 of data that has (or would have) been written.** \note           Call this function with *dlen = 0 to obtain the*                 required buffer size in *dlen*/
int base64_encode(unsigned char *dst, int *dlen, unsigned char *src, int  slen);/*** \brief          Decode a base64-formatted buffer** \param dst      destination buffer* \param dlen     size of the buffer* \param src      source buffer* \param slen     amount of data to be decoded** \return         0 if successful, BASE64_BUF_TOO_SMALL, or*                 BASE64_INVALID_DATA if the input data is not*                 correct. *dlen is always updated to reflect the amount*                 of data that has (or would have) been written.** \note           Call this function with *dlen = 0 to obtain the*                 required buffer size in *dlen*/
int base64_decode(unsigned char *dst, int *dlen, unsigned char *src, int  slen);#ifdef __cplusplus
}
#endif#endif

Base64.cpp

/********************************************************************
文件名 : Base64.c
描  述 : Base64编码,解码
版  权 :
作  者 :
修改记录:日期              修改人  修改内容2014-01-04 17:38    创建
********************************************************************/
#include <string.h>
#include <stdio.h>
#include "stdafx.h"
#include "Base64.h"//const char BASE64_CHARS_TABLE[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";static const unsigned char base64_enc_map[64] =
{'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J','K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T','U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd','e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n','o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x','y', 'z', '0', '1', '2', '3', '4', '5', '6', '7','8', '9', '+', '/'
};static const unsigned char base64_dec_map[128] =
{127, 127, 127, 127, 127, 127, 127, 127, 127, 127,127, 127, 127, 127, 127, 127, 127, 127, 127, 127,127, 127, 127, 127, 127, 127, 127, 127, 127, 127,127, 127, 127, 127, 127, 127, 127, 127, 127, 127,127, 127, 127,  62, 127, 127, 127,  63,  52,  53,54,  55,  56,  57,  58,  59,  60,  61, 127, 127,127,  64, 127, 127, 127,   0,   1,   2,   3,   4,5,   6,   7,   8,   9,  10,  11,  12,  13,  14,15,  16,  17,  18,  19,  20,  21,  22,  23,  24,25, 127, 127, 127, 127, 127, 127,  26,  27,  28,29,  30,  31,  32,  33,  34,  35,  36,  37,  38,39,  40,  41,  42,  43,  44,  45,  46,  47,  48,49,  50,  51, 127, 127, 127, 127, 127
};//Encode a buffer into base64 format
int base64_encode(unsigned char *dst, int *dlen, unsigned char *src, int  slen ){int i, n;int C1, C2, C3;unsigned char *p;if(slen == 0)return 0;n = (slen << 3) / 6;switch((slen << 3) - (n * 6)){case  2: n += 3; break;case  4: n += 2; break;default: break;}if(*dlen < n + 1){*dlen = n + 1;return BASE64_BUF_TOO_SMALL;}n = (slen / 3) * 3;for(i=0, p=dst; i<n; i += 3 ){C1 = *src++;C2 = *src++;C3 = *src++;*p++ = base64_enc_map[(C1 >> 2) & 0x3F];*p++ = base64_enc_map[(((C1 &  3) << 4) + (C2 >> 4)) & 0x3F];*p++ = base64_enc_map[(((C2 & 15) << 2) + (C3 >> 6)) & 0x3F];*p++ = base64_enc_map[C3 & 0x3F];}if(i < slen){C1 = *src++;C2 = ((i + 1) < slen) ? *src++ : 0;*p++ = base64_enc_map[(C1 >> 2) & 0x3F];*p++ = base64_enc_map[(((C1 & 3) << 4) + (C2 >> 4)) & 0x3F];if((i + 1) < slen)*p++ = base64_enc_map[((C2 & 15) << 2) & 0x3F];else *p++ = '=';*p++ = '=';}*dlen = p - dst;*p = 0;return 0;
}//Decode a base64-formatted buffer
int base64_decode(unsigned char *dst, int *dlen, unsigned char *src, int slen)
{int i, j, n;unsigned long x;unsigned char *p;for(i=j=n=0; i < slen; i++){if((slen - i) >= 2 &&src[i] == '\r' && src[i + 1] == '\n')continue;if(src[i] == '\n')continue;if(src[i] == '=' && ++j > 2){return BASE64_INVALID_DATA;}if(src[i] > 127 || base64_dec_map[src[i]] == 127){return BASE64_INVALID_DATA;}if(base64_dec_map[src[i]] < 64 && j != 0){return BASE64_INVALID_DATA;}n++;}if(n == 0){return 0;}n = ((n * 6) + 7) >> 3;if(*dlen < n){*dlen = n;return BASE64_BUF_TOO_SMALL;}for(j=3, n=x=0, p=dst; i>0; i--, src++ ){if(*src == '\r' || *src == '\n')continue;j -= (base64_dec_map[*src] == 64);x  = (x << 6) | (base64_dec_map[*src] & 0x3F);if(++n == 4){n = 0;if(j > 0) *p++ = (unsigned char)(x >> 16);if(j > 1) *p++ = (unsigned char)(x >>  8);if(j > 2) *p++ = (unsigned char)(x      );}}*dlen = p - dst;return 0;
}

base64的c语言实现方法相关推荐

  1. R语言sys方法:sys.info函数获取系统和用户信息、sys.localeConv函数获取当前区域中的数字和货币表示的详细信息、sys.setFileTime函数更改文件的时间

    R语言sys方法:sys.info函数获取系统和用户信息.sys.localeConv函数获取当前区域中的数字和货币表示的详细信息.sys.setFileTime函数更改文件的时间 目录

  2. R语言sys方法:sys.chmod函数改变指定文件的权限、Sys.Date函数返回系统的当前日期、Sys.time函数返回系统的当前时间

    R语言sys方法:sys.chmod函数改变指定文件的权限.Sys.Date函数返回系统的当前日期.Sys.time函数返回系统的当前时间 目录

  3. R语言sys方法:sys.getpid函数获取R会话的进程ID、sys.glob函数和file.path函数匹配文件夹下的所有特定类型文件、sys.info函数获取系统和用户信息

    R语言sys方法:sys.getpid函数获取R会话的进程ID.sys.glob函数和file.path函数匹配文件夹下的所有特定类型文件.sys.info函数获取系统和用户信息 目录

  4. R语言sys方法:sys.timezone函数返回当前系统时区的名称、system.File函数查找系统文件或者安装包的文件路径(例如查看R Base可安装路径、dplyr包的安装路径)

    R语言sys方法:sys.timezone函数返回当前系统时区的名称.system.File函数查找系统文件或者安装包的文件路径(例如查看R Base可安装路径.dplyr包的安装路径) 目录

  5. python语言的格式框架_django框架模板语言使用方法详解

    本文实例讲述了django框架模板语言使用方法.分享给大家供大家参考,具体如下: 模板功能 作用:生成html界面内容,模版致力于界面如何显示,而不是程序逻辑.模板不仅仅是一个html文件,还包括了页 ...

  6. html js 浏览器语言,js 判断浏览器语言的方法

    今天遇到一个要根据浏览器设置语言的类型,来展示网站的字体.比如,浏览器的语言是中文简体,那么网站也要显示中文简体字,如果是繁体或是英文都要根据浏览器当前设置的语言进行显示.那么,飞鸟慕鱼博客来和大家说 ...

  7. c语言排序方法有哪几种?

    c语言排序方法有:1.简单选择排序,基于O(n2)时间复杂度的排序算法:2.冒泡排序:3.简单插入排序:4.希尔排序:5.归并排序,基于归并操作的一种排序算法:6.快速排序,属于分治法的一种:7.堆排 ...

  8. 论文浅尝 - ACL2022 | 基于多语言语义解耦表示的跨语言迁移方法实现多语言阅读理解...

    论文作者:吴林娟,天津大学,研究方向为自然语言理解 论文链接:http://arxiv.org/abs/2204.00996 代码地址:https://github.com/wulinjuan/SSD ...

  9. win8编程c语言,Win8系统怎么运行C语言 win8系统运行C语言的方法

    C语言是一门通用计算机编程语言,是提供一种能以简易的方式编译.处理低级存储器.产生少量的机器码以及不需要任何运行环境支持便能运行的编程语言,但是许多win8系统用户并不知道要怎么运行C语言,针对这个情 ...

最新文章

  1. limbo可以运行linux,这次真的了,安卓手机可以安装 Windows 10 了
  2. STC单片机功率控制下载板
  3. 入门训练 圆的面积 c语言
  4. Webpack —— tree-starking 解析
  5. 压力测试以及编译安装httpd2.4
  6. kylin: NoClassDefFoundError: org/apache/hadoop/hive/conf/HiveConf
  7. php 使用json 教程,PHP使用JSON 教程
  8. java从hbase增量导出到,Hbase实用技巧:全量+增量数据的迁移方法
  9. python按键精灵找图教程_按键精灵中找图的操作教程
  10. 空间相关分析(四) 空间相关分析实战——对比人均GDP与综合经济指数
  11. 计算机基础第四章excel,计算机基础第4次作业 第四章 Excel知识题
  12. 米奇emoji_三星S9的AR Emoji迎新角色:迪士尼的米奇和米妮
  13. T32 load elf
  14. 基于Python-Pycharm的猴子摘桃小game
  15. 插入u盘计算机未响应,U盘插入win7电脑没反应如何解决 Win7插入U盘没反应怎么办...
  16. windows系统bat批处理 微信多开,软件多开
  17. Ground Truth是什么意思
  18. 机器学习笔记 - 特殊类型的矩阵和向量
  19. 关于Python获取sql server数据库,中文显示乱码问题
  20. oracle运行原理ppt,oracle数据库基础培训PPT

热门文章

  1. 运算符优先级和结合性
  2. s3c2440地址分配
  3. 关于Unity中的UGUI优化,你可能遇到这些问题
  4. 开发中使用UEditor编辑器的注意事项
  5. firefox不激活新标签页
  6. 《GDAL源码剖析与开发指南》一一1.9 简单的调用
  7. aspx页面与ascx控件脚本冲突的问题
  8. 谈谈分布式事务之三: System.Transactions事务详解[下篇]
  9. 凡客即便走小米模式也很难
  10. CentOS上使用libtld