美文网首页
python 阿里云第三方平台消息解密 制作image

python 阿里云第三方平台消息解密 制作image

作者: 邪恶的奥伯伦 | 来源:发表于2019-01-07 15:39 被阅读0次

    阿里的第三方平台的消息需要进行AES-CBC解密
    参考官方sdk python需要 import from Crypto.Cipher import AES

    关于这个库的安装是使用 easy_install pycrypto
    如果使用pip会出现问题

    使用pip安装pycrypto的目录名为crypto, 使用pip show pycrypto找到pycrypto的安装目录,将crypto修改为Crypto即可
    

    安装这个库后 随便制作docker file

    FROM   xxx:xxx/base-v3
    RUN easy_install pycrypto
    

    docker build -t xxx:xxx/base-v4 .

    进入容易内docker run -it xxx:xxx/base-v4 bash
    使用python import 进行确认

    相关文章

      网友评论

          本文标题:python 阿里云第三方平台消息解密 制作image

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