A simple AES-128 bit encryption - decryption app.
Hosted on encryptit.herokuapp.com
For encryption / decryption, send a POST request to:
encryptit.herokuapp.com/encrypt/
Ensure that Content-type is set to application/json.
Encryption:
{
  "key":"16 char key",
  "mode":"e",
  "values":[
    "First str","second str","and so on"
  ]
}Decryption:
{
  "key":"16 char key",
  "mode":"d",
  "values":[
    "0AvVP4YQTyMyqfmoClruHotgCE/E0w0pvKNhP79kay0=","0AvVP4YQTyMyqfmoClruHotgCE/E0w0pvKNhP79kay0="
  ]
}- 
Ensure input key is 16-digit key 
- 
Ensure requests come over HTTPS 
- 
Upgrade to djago 2.2.3 or later 
- 
provide 256 bit encryption support 
- 
Create a webapp to facilitate e/d