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