1. 程式人生 > >python3.6執行AES加密及解密方法

python3.6執行AES加密及解密方法

abc 安裝 pytho south cipher while todo 運行 install

python版本:3.6.2

首先安裝pycryptodome

cmd執行命令:pip install pycryptodome

特別簡單,代碼如下:

#!/usr/bin/python
# -*- coding: utf-8 -*-



import base64

from Crypto.Cipher import AES


# str不是16的倍數那就補足為16的倍數
def add_to_16(text):
    while len(text) % 16 != 0:
        text += ‘\0‘
    return str.encode(text)  # 返回bytes


key = ‘123456‘  # 密碼

text = ‘abc123def456‘  # 待加密文本

aes = AES.new(add_to_16(key), AES.MODE_ECB)  # 初始化加密器

encrypted_text = str(base64.encodebytes(aes.encrypt(add_to_16(text))), encoding=‘utf8‘).replace(‘\n‘, ‘‘)  # 加密

text_decrypted = str(aes.decrypt(base64.decodebytes(bytes(encrypted_text, encoding=‘utf8‘))).rstrip(b‘\0‘).decode("utf8"))  # 解密

print(‘加密值:‘, encrypted_text)

print(‘解密值:‘, text_decrypted)



運行結果為:
加密值: qR/TQk4INsWeXdMSbCDDdA==

解密值: abc123def456

技術分享圖片技術分享圖片

上面網址是 http://tool.chacuo.net/cryptaes

--------------------- 本文來自 華賀 的CSDN 博客 ,全文地址請點擊:https://blog.csdn.net/hh775313602/article/details/78991340?utm_source=copy

python3.6執行AES加密及解密方法