免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 9448 | 回复: 6
打印 上一主题 下一主题

[C] 怎样在C中用openssl解码php中base64_encode的编码? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2013-09-25 22:46 |只看该作者 |倒序浏览
php中base64_encode编码的结果怎么与openssl的base64编码结果不一样:
  1. <?php
  2. echo base64_encode("aaa");
  3. ?>

  4. result is "YWFh"
复制代码
用openssl命令行测试:
  1. #echo "aaa" | openssl enc -base64
  2. output: YWFhCg==

  3. #echo "YWFhCg==" | openssl enc -base64 -d
  4. output: aaa
复制代码
为什么一个是"YWFh",而另一个是"YWFhCg=="?
我本来想在C中这样解码,但是结果是NULL:
  1. int base64_decode(char *str,int str_len,char *decode,int decode_buffer_len){
  2.     int len=0;
  3.     BIO *b64,*bmem;
  4.     b64=BIO_new(BIO_f_base64());
  5.     bmem=BIO_new_mem_buf(str,str_len);
  6.     bmem=BIO_push(b64,bmem);
  7.     len=BIO_read(bmem,decode,str_len);
  8.     decode[len]=0;
  9.     BIO_free_all(bmem);
  10.     return 0;
  11. }

  12. result is NULL, nothing decoded.
复制代码

论坛徽章:
59
2015年亚洲杯之约旦
日期:2015-01-27 21:27:392015年亚洲杯之日本
日期:2015-02-06 22:09:41拜羊年徽章
日期:2015-03-03 16:15:432015年辞旧岁徽章
日期:2015-03-03 16:54:152015年迎新春徽章
日期:2015-03-04 09:50:282015元宵节徽章
日期:2015-03-06 15:50:392015年亚洲杯之阿联酋
日期:2015-03-19 17:39:302015年亚洲杯之中国
日期:2015-03-23 18:52:23巳蛇
日期:2014-12-14 22:44:03双子座
日期:2014-12-10 21:39:16处女座
日期:2014-12-02 08:03:17天蝎座
日期:2014-07-21 19:08:47
2 [报告]
发表于 2013-09-26 08:06 |只看该作者
自已写一个, 10分钟。。。

论坛徽章:
39
白银圣斗士
日期:2015-11-24 10:40:40酉鸡
日期:2015-03-20 14:15:44寅虎
日期:2015-03-20 14:13:59午马
日期:2015-03-20 14:13:16白羊座
日期:2015-03-20 14:12:54金牛座
日期:2015-03-20 14:12:09双子座
日期:2015-03-20 14:11:57巨蟹座
日期:2015-03-20 14:11:44狮子座
日期:2015-03-20 14:11:29亥猪
日期:2015-03-20 14:16:24戌狗
日期:2015-03-20 14:16:40申猴
日期:2015-03-20 14:17:05
3 [报告]
发表于 2013-09-26 09:18 |只看该作者
Encryption/Decryption

How do I base64-encode something?

Use the enc -base64 option.

# send encoded contents of file.txt to stdout
openssl enc -base64 -in file.txt

# same, but write contents to file.txt.enc
openssl enc -base64 -in file.txt -out file.txt.enc
It’s also possible to do a quick command-line encoding of a string value:

$ echo "encode me" | openssl enc -base64
ZW5jb2RlIG1lCg==

Note that echo will silently attach a newline character to your string. Consider using its -n option if you want to avoid that situation, which could be important if you’re trying to encode a password or authentication string.

$ echo -n "encode me" | openssl enc -base64
ZW5jb2RlIG1l

论坛徽章:
39
白银圣斗士
日期:2015-11-24 10:40:40酉鸡
日期:2015-03-20 14:15:44寅虎
日期:2015-03-20 14:13:59午马
日期:2015-03-20 14:13:16白羊座
日期:2015-03-20 14:12:54金牛座
日期:2015-03-20 14:12:09双子座
日期:2015-03-20 14:11:57巨蟹座
日期:2015-03-20 14:11:44狮子座
日期:2015-03-20 14:11:29亥猪
日期:2015-03-20 14:16:24戌狗
日期:2015-03-20 14:16:40申猴
日期:2015-03-20 14:17:05
4 [报告]
发表于 2013-09-26 09:20 |只看该作者
echo 默认会在后面加上"\n",使用-n参数则不会
Cg== 是"\n"的base64

论坛徽章:
0
5 [报告]
发表于 2013-09-26 09:30 |只看该作者
回复 4# rover12421 在命令行中使用echo会被添加\n,那为何php中base64_encode编码的,我在C代码中解码无法得出结果呢?


   

论坛徽章:
39
白银圣斗士
日期:2015-11-24 10:40:40酉鸡
日期:2015-03-20 14:15:44寅虎
日期:2015-03-20 14:13:59午马
日期:2015-03-20 14:13:16白羊座
日期:2015-03-20 14:12:54金牛座
日期:2015-03-20 14:12:09双子座
日期:2015-03-20 14:11:57巨蟹座
日期:2015-03-20 14:11:44狮子座
日期:2015-03-20 14:11:29亥猪
日期:2015-03-20 14:16:24戌狗
日期:2015-03-20 14:16:40申猴
日期:2015-03-20 14:17:05
6 [报告]
发表于 2013-09-26 10:12 |只看该作者
回复 5# sugelawa


    测试发现openssl解码的一个特点,用文件测试的,比echo明显点
    openssl enc -base64 -d -in a.txt
    如果文件里只有base64编码,末尾没有'\n',openssl无法解码,测试文件内容分下面三种
  1. YWFh
  2. YWFhYWFh
  3. YWFhCg==
  4. YWFhYWFhCg==
复制代码
如果在内容后面加个回车'\n'
  1. YWFh\n
  2. YWFhYWFh\n
  3. YWFhCg==\n
  4. YWFhYWFhCg==\n
复制代码
YWFhCg==\n  能的到正确结果 aaa
YWFhYWFhCg==\n  能的到正确结果 aaaaaa

YWFh\n 和 YWFhYWFh\n 能的到结果,但是末尾多了个字符.终端显示是%

    至于你的c代码,表示看不懂....

论坛徽章:
0
7 [报告]
发表于 2013-09-26 10:38 |只看该作者
回复 6# rover12421 真不知道openssl怎么会这么干,粗暴地改变目标字串内容。C代码部分是使用openssl的API实现的,网上找的,后来在别人指点下这样解决了:
  1. Add BIO_set_flags(b64, BIO_FLAGS_BASE64_NO_NL) after the BIO_new() call to tell OpenSSL that all the input appears in a single line without newline.
复制代码
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP