centosDebianUbuntu上安装PyCryptodomeCrypto

it2022-05-05  235

注意:PyCryptodome是Crypto的升级版,不要安装旧的Crypto了。

如果能联网,直接装:

pip3 install PyCryptodome

GitHub仓库地址:Legrandin/pycryptodome: A self-contained cryptographic library for Python 如果你的机器不能联网,编译安装:

wget https://codeload.github.com/Legrandin/pycryptodome/zip/v3.8.2 unzip pycryptodome-3.8.2.zip cd pycryptodome-3.8.2 python3 -m pip setup.py install

然后可以使用了:

import Crypto.Random.random print(Crypto.Random.random.getrandbits(16))

最新回复(0)