python3的Cryptodome

简介


python3的PyCryptodome库用于密码学,属于对PyCrypto库的扩展。

安装


Linux上安装:

pip install pycryptodome

Windows上安装:

pip install pycryptodomex

我是同时装了python2和python3,直接

python3 -m pip install pycryptodemex

用法


刚开始的学习的时候看到别人用直接就可以导入函数了

from Crypto.Cipher import AES

但是我用的时候一直报错No module,之后用全名就行了

from Cryptodome.Cipher import AES

更多的函数可以通过help(Cryptodome)和help(Cryptodome.包名.函数)来查看

python3的Cryptodome

python3的Cryptodome

上一篇:poj3268(最短路)


下一篇:8266编译错误 xtensa-lx106-elf/bin/ld: segmentled section `.text' will not fit in region `iram1_0_seg'