Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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 securestring

plain_text = 'tesuya'

enc = securestring.encrypt(plain_text)

dec = securestring.decrypt(enc)
# tesuya
```

use from commandline

```bash
python -m securestring encrypt tesuya
```