Python Rijndael加密解密问题,pythonrijndael,以下是使用PHP进行Ri
Python Rijndael加密解密问题,pythonrijndael,以下是使用PHP进行Ri
以下是使用PHP进行Rijndael方式加密的例子:
function encrypt($data) { return base64_encode(mcrypt_encrypt(MCRYPT_RIJNDAEL_256 ,'oqufXQ(?bc=6_hR2I3sMZChDpb6dDlw4', $data , MCRYPT_MODE_CBC, utf8_encode('fOaiIOkD8*9Xeu_s4_bb87Ox_UG+D9GA')));}
我曾找到这个代码,里面的答案的确可行,但如何自定义iv?(即utf8_encode('fOaiIOkD8*9Xeu_s4_bb87Ox_UG+D9GA'))
另,block_size、key_size和iv_size均需要为32(字节)。
编译mcrypt.c,GCC提示错误如下:
mcrypt.c: In function 'initmcrypt':mcrypt.c:1714:2: error: incompatible type for argument 1 of 'PyString_FromString'In file included from C:\Python27\include/Python.h:94:0, from mcrypt.c:24:C:\Python27\include/stringobject.h:63:24: note: expected 'const char *' but argument is of type 'double'error: command 'gcc' failed with exit status 1
编橙之家文章,
相关内容
- Python jinja2循环嵌套内层改变外层用什么方法,pythonji
- django app提供pv信息的方法是什么,djangopv,django有没有
- 想获取youku <video>标签用python方法能实现吗,
- pygame event记录不起作用什么原因,pygameevent,第一次提问
- Python打包C语言为源文件的package需要如何操作,,是这样
- python并行数据存取有哪些高效方法,python并行存取,最近
- django后台微信公众平台提示服务器没有响应如何解决,
- 请问NERDTree配色和高亮怎么设置,nerdtree配色高亮,几天
- 写的python自动登录CSDN失败,求助分析源码,pythoncsdn,这几
- python OpenGL编程导入提示模块错误No module named,pythonmo
评论关闭