$ pip install -U SecureHTTP
>>> from SecureHTTP import AESEncrypt, AESDecrypt, RSAEncrypt, RSADecrypt, generate_rsa_keys
>>> ciphertext = AESEncrypt('ThisIsASecretKey', 'Hello World!')
>>> plaintext = AESDecrypt("ThisIsASecretKey", ciphertext)
>>> (pubkey, privkey) = generate_rsa_keys(incall=True)
>>> ciphertext = RSAEncrypt(pubkey, 'Hello World!')
>>> plaintext = RSADecrypt(privkey, ciphertext)
$ pip install -U Flask-PluginKit
>>> from flask_pluginkit import PluginManager
>>> plugin = PluginManager(app)
__ ___ __
(_ _ o __ _|_ | /
__)(_| | | | |__|_\__