- 论坛徽章:
- 0
|
php中base64_encode编码的结果怎么与openssl的base64编码结果不一样:- <?php
- echo base64_encode("aaa");
- ?>
- result is "YWFh"
复制代码 用openssl命令行测试:- #echo "aaa" | openssl enc -base64
- output: YWFhCg==
- #echo "YWFhCg==" | openssl enc -base64 -d
- output: aaa
复制代码 为什么一个是"YWFh",而另一个是"YWFhCg=="?
我本来想在C中这样解码,但是结果是NULL:- int base64_decode(char *str,int str_len,char *decode,int decode_buffer_len){
- int len=0;
- BIO *b64,*bmem;
- b64=BIO_new(BIO_f_base64());
- bmem=BIO_new_mem_buf(str,str_len);
- bmem=BIO_push(b64,bmem);
- len=BIO_read(bmem,decode,str_len);
- decode[len]=0;
- BIO_free_all(bmem);
- return 0;
- }
- result is NULL, nothing decoded.
复制代码 |
|