美文网首页
python写3des加密

python写3des加密

作者: Py_Explorer | 来源:发表于2018-05-08 14:33 被阅读0次

    环境

    python2.7+
    #安装pyDes
    python -m pip install pyDes
    

    代码

     #引入模块
     import pyDes,base64
     #需要加密的文本
     text = '189312.0'
     #密钥
     key = '750DB8A48693A8CD58654478'
     #参数解释
     #key:密钥   pyDes.CBC:模式   第三个:偏移量    pad:None   padmode:固定参数  
     k = pyDes.triple_des(key, pyDes.CBC,'F15A9613', pad=None, padmode=pyDes.PAD_PKCS5)
     d = k.encrypt(text)
     res = base64.standard_b64encode(d)
     print res
    

    3des测试网站

    http://tool.chacuo.net/crypt3des

    相关文章

      网友评论

          本文标题:python写3des加密

          本文链接:https://www.haomeiwen.com/subject/mqtwrftx.html