概述
https://blog.csdn.net/hh775313602/article/details/78991340
python版本:3.6.5
首先安装pycryptodome
# pip install pycryptodome
加密方式特别简单,代码如下:
方式一:补0
#!/usr/bin/python
# -*- coding: utf-8 -*-
"""
补0方式(ECB加密)
"""
import base64
from Crypto.Cipher import AES
# 补足字符串长度为16的倍数
def add_to_16(s):
while len(s) % 16 != 0:
s += '