文件名称:base64
- 所属分类:
- 其他小程序
- 资源属性:
- [C/C++] [源码]
- 上传时间:
- 2016-06-28
- 文件大小:
- 6kb
- 下载次数:
- 0次
- 提 供 者:
- yangj******
- 相关连接:
- 无
- 下载说明:
- 别用迅雷下载,失败请重下,重下不扣分!
下载
别用迅雷、360浏览器下载。
如迅雷强制弹出,可右键点击选“另存为”。
失败请重下,重下不扣分。
如迅雷强制弹出,可右键点击选“另存为”。
失败请重下,重下不扣分。
介绍说明--下载内容均来自于网络,请自行研究使用
本程序用于将任何文件进行Base64编码,是否是标准Base64编码取决于Makefile的DFLAGS变量是否添加-DPRIVATE_BASE64。
使用本程序的方法是:
./base64convert -e 1.mp3 encode.data //将1.mp3进行Base64编码,编码后的结果存放到encode.data文件
./base64convert -d encode.data 2.mp3 //通过encode.data进行解码,解码的结果2.mp3这个文件
这个工程的各个源文件已经分散到了不同的文件夹,请自行分析Makefile,确定各个源文件的编译链接过程。
有两个知识点请自己查找资料学习之(非常重要!!!):
gcc -D 选项的作用
gcc -I 选项的作用
-
This procedure for any files Base64 encoding, depending on whether the standard Base64 encoding of DFLAGS Makefile variable is added-DPRIVATE_BASE64.
With this program is:
./base64convert-e 1.mp3 encode.data // results 1.mp3 Base64 encoding of the encoded file stored encode.data
./base64convert-d encode.data 2.mp3 // decoding result of decoding the file by encode.data 2.mp3
使用本程序的方法是:
./base64convert -e 1.mp3 encode.data //将1.mp3进行Base64编码,编码后的结果存放到encode.data文件
./base64convert -d encode.data 2.mp3 //通过encode.data进行解码,解码的结果2.mp3这个文件
这个工程的各个源文件已经分散到了不同的文件夹,请自行分析Makefile,确定各个源文件的编译链接过程。
有两个知识点请自己查找资料学习之(非常重要!!!):
gcc -D 选项的作用
gcc -I 选项的作用
-
This procedure for any files Base64 encoding, depending on whether the standard Base64 encoding of DFLAGS Makefile variable is added-DPRIVATE_BASE64.
With this program is:
./base64convert-e 1.mp3 encode.data // results 1.mp3 Base64 encoding of the encoded file stored encode.data
./base64convert-d encode.data 2.mp3 // decoding result of decoding the file by encode.data 2.mp3
(系统自动生成,下载前可以参看下载内容)
下载文件列表
base64加密解密\arrayUtil.c
..............\arrayUtil.h
..............\base64.c
..............\base64.h
..............\common.h
..............\main.c
..............\my_errno.h
..............\my_types.h
..............\stringUtil.c
..............\stringUtil.h
base64加密解密