一.初級加密(此方法同樣適用于linux系統(tǒng))
1.python環(huán)境:3.5.3(python3的環(huán)境必須導(dǎo)入這兩個包才能使用)
2.安裝模塊:pip install Crypto
3.再安裝pycrypto:pip install pycrypto(此模塊在3.4之后已經(jīng)不再使用,使用下面的模塊代替其功能)
4.或者可以安裝pycryptodome:pip install pycryptodome(此模塊是3.4之后AES加密模塊的一個分支)
二.python3.6.5版本無法使用該模塊
1.公司給我新配的電腦舍悯,然后就開始在上面安裝各種包可很,在導(dǎo)入AES模塊的過程中,提示一直找不到Crypto這個包,我就很納悶,在之前我個人的電腦python3.5.3的版本運行都是正常的,怎么到這就不行了呢疚宇?
2.之前在網(wǎng)上有看到說安裝這個模塊可能下載的是小寫的,需要將下載的包改寫成大寫赏殃,然后我就通過查看文件路徑找到安裝包的目錄敷待,發(fā)現(xiàn)安裝包真的是小寫的,而我導(dǎo)入的包是大寫的嗓奢,我就將安裝包改寫成大寫讼撒,重新運行一下程序,OK股耽,正常了8小!物蝙!
from Crypto.Cipher import AES
import base64
class prpcrypt():
def __init__(self):
# key值(密碼)
self.key = '***************'.encode("utf-8") # 因為在python3中AES傳入?yún)?shù)的參數(shù)類型存在問題炎滞,需要更換為 bytearray , 所以使用encode編碼格式將其轉(zhuǎn)為字節(jié)格式(linux系統(tǒng)可不用指定編碼)
# vi偏移量
self.iv = '****************'.encode("utf-8") # 編碼
self.mode = AES.MODE_CBC
self.BS = AES.block_size
self.pad = lambda s: s + (self.BS - len(s) % self.BS) * chr(self.BS - len(s) % self.BS)
self.unpad = lambda s: s[0:-ord(s[-1])]
# 加密
def encrypt(self, text):
text = self.pad(text).encode("utf-8")
cryptor = AES.new(self.key, self.mode, self.iv)
# 目前AES-128 足夠目前使用(CBC加密)
ciphertext = cryptor.encrypt(text)
# base64加密
return base64.b64encode(bytes(ciphertext))
# 解密
def decrypt(self, text):
# base64解密
text = base64.b64decode(text)
cryptor = AES.new(self.key, self.mode, self.iv)
# CBC解密
plain_text = cryptor.decrypt(text)
# 去掉補足的空格用strip() 去掉
return self.unpad(bytes.decode(plain_text).rstrip('\0')) # 解密字節(jié)?诬乞?册赛?
if __name__ == '__main__':
pc = prpcrypt() # 初始化密鑰 和 iv
# text='access&a494fcbc-9aa1-4718-bd7d-a90d01211d97&0&2&'
text = 'access&a494fcbc-9aa1-4718-bd7d-a90d01211d97&0&1&'
# text='access&a494fcbc-9aa1-4718-bd7d-a90d01211d97&1&1&'
# text='access&a494fcbc-9aa1-4718-bd7d-a90d01211d97&1&2&'
# text='update&a494fcbc-9aa1-4718-bd7d-a90d01211d97&0&2&'
# text='update&a494fcbc-9aa1-4718-bd7d-a90d01211d98&0&2&'
# text='logout&'
e = pc.encrypt(text + str(int(time.time() / 10))) # 加密
d = pc.decrypt(e) # 解密
print("加密:%s" % e.decode("utf-8"))
print("解密:%s"% d)
print("長度:%s"% len(d))
二.高級加密
python環(huán)境:2.7.3(也可以是3.5.3環(huán)境)
# -*- coding:utf-8 -*-
from Crypto.Cipher import AES
from binascii import b2a_hex, a2b_hex
import sys,time
import base64
class prpcrypt():
def __init__(self):
# key值(密碼)
self.key = '******************'
# vi偏移量
self.iv = '****************'
self.mode = AES.MODE_CBC
self.BS = AES.block_size
self.pad = lambda s: s + (self.BS - len(s) % self.BS) * chr(self.BS - len(s) % self.BS)
self.unpad = lambda s : s[0:-ord(s[-1])]
# 加密
def encrypt(self,text):
text = self.pad(text)
cryptor = AES.new(self.key,self.mode,self.iv)
# 目前AES-128 足夠目前使用(CBC加密)
ciphertext = cryptor.encrypt(text)
# base64加密
return base64.b64encode(bytes(ciphertext))
# 解密
def decrypt(self,text):
# base64解密
text = base64.b64decode(text)
cryptor = AES.new(self.key,self.mode, self.iv)
# CBC解密
plain_text = cryptor.decrypt(text)
# 去掉補足的空格用strip() 去掉
return self.unpad(plain_text.rstrip('\0'))
if __name__ == '__main__':
pc = prpcrypt() #初始化密鑰 和 iv
#text='access&a494fcbc-9aa1-4718-bd7d-a90d01211d97&0&2&'
text='access&a494fcbc-9aa1-4718-bd7d-a90d01211d97&0&1&'
#text='access&a494fcbc-9aa1-4718-bd7d-a90d01211d97&1&1&'
#text='access&a494fcbc-9aa1-4718-bd7d-a90d01211d97&1&2&'
#text='update&a494fcbc-9aa1-4718-bd7d-a90d01211d97&0&2&'
#text='update&a494fcbc-9aa1-4718-bd7d-a90d01211d98&0&2&'
#text='logout&'
e = pc.encrypt(text+str(int(time.time()/10))) #加密
d = pc.decrypt(e) #解密
print "加密:",e
print "解密:",d
print "長度:",len(d)