pt007

Results 1 issues of pt007

AES加解密的程序写的有个问题,没有自动对16位对齐,下面是16位对齐,支持中英文版的python程序: `#coding:utf-8 ''' pthon3 aes1.py AES Key String: 0102030405060708 AES IV String: 0102030405060708 AES Mode: AES/CBC/PKCS7PADDING ''' import base64 from binascii import b2a_hex,a2b_hex from Crypto.Cipher import AES #注:python3 安装 Crypto...