我的Python自学之路Python 运维

0610 - AES256CBC, my first wheel

2017-06-10  本文已影响51人  ITJason

AES256CBC

Wrapper for AES 256 CBC using Python.

Get from GitHub

Dependency

Depends on cryptography

$ pip install cryptography

Note: also refers to Swift version: AES256CBC

Usage

txt = "Hello World."
password = AES256CBC.generate_password()

encrypted = AES256CBC.encrypt(txt, password)
decrypted = AES256CBC.decrypt(encrypted, password)

assert decrypted == txt

Note:


博客原文:0610 - AES256CBC, my first wheel for Python

上一篇 下一篇

猜你喜欢

热点阅读