python AES CBC模式加密

來源:互聯網
上載者:User

標籤:inux   com   base64   lin   color   https   就是   key   包含   

今天需要用到AES CBC模式加密,搜尋了很久,終於加密成功,記錄一下今天的理解。

首先要安裝pycrypto庫,不知道為什麼在windows安裝失敗,在linux可以正常安裝

http://tool.chacuo.net/cryptaes,https://tools.lami.la/jiami/aes,以下代碼加密後結果與這兩個網頁加密後一樣。

這裡有幾點要注意,key的長度要是16,24或32,text的長度要是16的倍數,不滿足長度都會補全,補全的字元可以自己定義,比如key補全不一定要"\0", 你還可以用其他的,text補全的字元在你解密的時候會用到,

不過下面補全的字元應該是和上面兩個url補全的字元一樣的。

# -*- encoding: utf-8 -*-from Crypto.Cipher import AESimport base64BS = AES.block_size  # 這個等於16mode = AES.MODE_CBCpad = lambda s: s + (BS-len(s))*"\0"  # 用於補全key# 用於補全下面的text,上面兩個網址就是用以下形式補全的pad_txt = lambda s: s + (BS - len(s) % BS) * chr(BS - len(s) % BS)unpad = lambda s : s[0:-ord(s[-1])]key = "123" # the length can be (16, 24, 32)  # keytext = ‘http://www.baidu.com/‘  # 加密文本vi = "HjRP7LlXuSsFMisz"   # 位移量cipher = AES.new(pad(key), mode, vi)encrypted = cipher.encrypt(pad_txt(text))#通過aes加密後,再base64加密encrypted = base64.b64encode(encrypted)   print(encrypted)cryptor=AES.new(pad(key),mode, vi)# 解密,解密後text文本會包含用來補全的字元plain_text  = cryptor.decrypt(base64.b64decode(encrypted))print(plain_text)

 

python AES CBC模式加密

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.