Metadata-Version: 2.1
Name: covert-ots
Version: 1.0.6
Summary: A secure way to communicate your secrets
Home-page: UNKNOWN
Author: Om Gupta
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# covert
A secure way to communicate your secrets
- Find the CLI (wip) [here](https://pypi.org/project/covert-ots/)
- Find the website [here](https://covert-ots.web.app/)
- Backend Deployed on Google Cloud App Engine
## Working
- When a user saves a secret it is encrypted on the client side using a pass phrase encryption algo.
- A unique key (url in case of web clients) is generated for every stored secret.
- A user can then share this key (or url) to someone else, who can then retrieve the secret using the correct pass phrase
- The encrypted token is then fetched and decrypted using the pass phrase on the client and displayed to the user (only once)

## CLI Docs

### commands

```
covert new - save a new secret
```

```
covert get - get a saved secret
```


