python3的Cryptodome,,简介python3的
python3的Cryptodome,,简介python3的
简介
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
相关内容
- 使用pycharm通过国内镜像安装python包和命令行安装pytho
- python 报错TypeError: 'range' object does not suppo
- 用python操作和管理ArangoDB,python操作arangodb,目录:连接
- RobotFramework+python,,于 接口测试解压包,
- ROS惯导数据发布(Python),,一、背景 基本配置
- PAT 1084 外观数列python解法,patpython,外观数列是指具有以
- CIFAR-10和python读取,cifar-10python,1、CIFAR-10
- python注册到eureka,,由于python提供
- Python3安装geohash,,Geohash是一个
- 升级python2.6.6到python2.7导致pip命令不可用,,服务器环境
评论关闭