Python DES 加密解密,就是大家所谓想要的那个非常快速的方法

这个要借助Crypto.Cipher这个插件来实现的,引用后只需要写如下代码即可

 1 from Crypto.Cipher import DES
 2 
 3 class MyDESCrypt:
 4     
 5     key = chr(11)+chr(11)+chr(11)+chr(11)+chr(11)+chr(11)+chr(11)+chr(11)
 6     iv = chr(22)+chr(22)+chr(22)+chr(22)+chr(22)+chr(22)+chr(22)+chr(22)
 7     
 8     def __init__(self,key='',iv=''):
 9         if len(key)> 0:
10             self.key = key
11         if len(iv)>0 :
12             self.iv = iv
13         
14     def ecrypt(self,ecryptText):
15        try:
16            cipherX = DES.new(self.key, DES.MODE_CBC, self.iv)
17            pad = 8 - len(ecryptText) % 8
18            padStr = ""
19            for i in range(pad):
20               padStr = padStr + chr(pad)
21            ecryptText = ecryptText + padStr
22            x = cipherX.encrypt(ecryptText)
23            return x.encode('hex_codec').upper()
24        except:
25            return ""
26       
27    
28     def decrypt(self,decryptText):
29         try:
30             
31             cipherX = DES.new(self.key, DES.MODE_CBC, self.iv)
32             str = decryptText.decode('hex_codec')
33             y = cipherX.decrypt(str)
34             return y[0:ord(y[len(y)-1])*-1]
35         except:
36             return ""

 

转载于:https://www.cnblogs.com/dj258/p/4485708.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值