Windows SecureString wrapper written by Python.
This script uses PowerShell as a backend, thus available only in Windows.
$ pip install py-securestringuse as module
from securestring import securestring
plain_text = 'tesuya'
enc = securestring.encrypt(plain_text)
dec = securestring.decrypt(enc)
# tesuyause from commandline
python -m securestring encrypt tesuya