Python调用模块实现AES加解密

测试输入:
plaintext1234567 1234567891234567
预期输出:
b’e232fb646d5d820620ffa609ba56200a’
b’plaintext1234567’

测试输入:
1234567891234567 plaintext1234567
预期输出:
b’a49e9a7c354a9f64486b16e601fdccd7’
b’1234567891234567’

在这里插入代码片
from Crypto.Cipher import AES
from binascii import b2a_hex, a2b_hex

#ECB模式
class aestest():
#***********Begin**************

    def __init__(self, key):
        self.key = key.encode('utf-8')
        self.mode = AES.MODE_ECB
    def en(self, text):
        ptor = AES.new(self.key, self.mode)
        text = text.encode('utf-8')
        self.ciphertext = ptor.encrypt(text)
        text = b2a_hex(self.ciphertext)
        return text
    def de(self, text):
        ptor = AES.new(self.key, self.mode)
        plain = ptor.decrypt(a2b_hex(text))
        return plain
#************End***************

def Evidence(text,key):
    # 要求key长度为16
    aes = aestest(key)
    enc = aes.en(text)
    print(enc)
    detext = aes.de(enc)
    print(detext)
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值