您好,登錄后才能下訂單哦!
怎么在Python中實現AES加密?相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。
Python主要應用于:1、Web開發;2、數據科學研究;3、網絡爬蟲;4、嵌入式應用開發;5、游戲開發;6、桌面應用開發。
#coding=utf-8 ''''' 加密的一方和解密的一方必須提前確定好key值 ''' from Crypto.Cipher import AES from binascii import b2a_hex, a2b_hex class MyCrypto(): def __init__(self, key): self.key_len = len(key) if not self.key_len == 16 and not self.key_len == 24 and not self.key_len == 32: raise Exception("length of key is wrong") self.key = key self.mode = AES.MODE_CBC #這種模式更加安全 def encrypt(self, text): ''''' 被加密的明文長度必須是key長度的整數倍,如果不夠,則用\0進行填充 轉成16進制字符串,是因為避免不可見的ascii在顯示的時候搗亂 ''' cryptor = AES.new(self.key, self.mode, self.key) count = len(text) add = self.key_len - (count % self.key_len) text = text + ('\0' * add) self.ciphertext = cryptor.encrypt(text) return b2a_hex(self.ciphertext) def decrypt(self, text): ''''' 解密后需注意,加密時有可能填充\0,因此要去掉右側的\0 ''' cryptor = AES.new(self.key, self.mode, self.key) plain_text = cryptor.decrypt(a2b_hex(text)) return plain_text.rstrip('\0') if __name__ == '__main__': mc = MyCrypto("kwsy_zds20160822") e = mc.encrypt("張東升") d = mc.decrypt(e) print e,d
看完上述內容,你們掌握怎么在Python中實現AES加密的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。