pip3 install pycryptohome python3.6此库安装方式,需要pip3 install pycryptodome。 如有site-packages中存在crypto、pycrypto, 在pip之前,需要pip3 uninstall crypto、pip3 uninstall pycrypto,否则无法安装成功。 C:\WINDOWS\system32>pip3 install pycryptodome Collecting pycryptodome Downloading https://files.pythonhost...
pip install pycryptodome 改名了才知道,全是眼泪~~ #AES-demo """ @author: sy @file: python_AES.py @time: 2017/12/12 09:10 @desc: AES加密 """ from Crypto.Cipher import AES #秘钥,此处需要将字符串转为字节 key = b'abcdefgh' #加密内容需要长达16位字符,所以进行空格拼接 def pad(text)...