Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/er28-0652/securestring
Windows SecureString wrapper written by Python
https://github.com/er28-0652/securestring
python3 securestring windows
Last synced: 5 days ago
JSON representation
Windows SecureString wrapper written by Python
- Host: GitHub
- URL: https://github.com/er28-0652/securestring
- Owner: er28-0652
- License: mit
- Created: 2019-02-24T14:23:58.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-10-02T13:08:47.000Z (about 4 years ago)
- Last Synced: 2024-09-26T09:16:12.125Z (about 2 months ago)
- Topics: python3, securestring, windows
- Language: Python
- Size: 6.84 KB
- Stars: 1
- Watchers: 0
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![Build status](https://ci.appveyor.com/api/projects/status/cxc3lbdi0hjv3x73?svg=true)](https://ci.appveyor.com/project/er28-0652/securestring)
# securestring
Windows SecureString wrapper written by Python.
This script uses PowerShell as a backend, thus available only in Windows.## Install
```bash
$ pip install py-securestring
```## Usage
use as module
```python
from securestring import securestringplain_text = 'tesuya'
enc = securestring.encrypt(plain_text)
dec = securestring.decrypt(enc)
# tesuya
```use from commandline
```bash
python -m securestring encrypt tesuya
```