Metadata-Version: 2.1
Name: ciphit
Version: 0.2.1
Summary: ciphit is a cryptography CLI-tool
Home-page: https://github.com/sgrkmr/ciphit
Author: Sagar Kumar
License: MIT
Keywords: cli commandline user-interface ui cryptography
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: rich (>=8.0.0)
Requires-Dist: pycrypto (>=2.6.1)
Requires-Dist: click (>=7.1.2)
Requires-Dist: click-option-group (>=0.5.1)

<p align="center">
    <a href="https://github.com/sgrkmr/ciphit", alt="ciphit">
        <img src="https://user-images.githubusercontent.com/57829219/84270533-7492e380-ab48-11ea-9270-8531ea72ac6e.png", alt="ciphit">
    </a>
</p>
<p align="center">
    <a href="https://GitHub.com/sgrkmr/ciphit/releases/", alt="version">
        <img src="https://img.shields.io/github/release/sgrkmr/ciphit.svg?style=flat-square&color=blue", alt="version">
    </a>
    <a href="https://GitHub.com/sgrkmr/ciphit/releases/", alt="downloads">
        <img src="https://img.shields.io/github/downloads/sgrkmr/ciphit/total.svg?style=flat-square", alt="downloads">
    </a>
    <a href="https://github.com/sgrkmr/ciphit/commits/master", alt="commit">
        <img src="https://img.shields.io/github/last-commit/sgrkmr/ciphit?style=flat-square", alt="commit">
    </a>
    <a href="https://www.python.org/downloads/release/python-374/">
        <img src="https://img.shields.io/badge/Python-3.7-blue?style=flat-square", alt="python3">
    </a>
    <a href="https://GitHub.com/sgrkmr/ciphit/graphs/contributors/", alt="contributors">
        <img src="https://img.shields.io/github/contributors/sgrkmr/ciphit.svg?style=flat-square", alt="contributors">
    </a>
    <a href="https://opensource.org/licenses/MIT" alt="license">
    <img src="https://img.shields.io/github/license/sgrkmr/ciphit.svg?style=flat-square", alt="license">
    </a>
</p>

<p align="center">
<code>ciphit</code> is a basic cryptography CLI-tool written in python, Currently only uses AES.
</p>

# Screenshots
![scrn](https://user-images.githubusercontent.com/57829219/84272798-81fd9d00-ab4b-11ea-89e2-c712a16c00a3.png)

## Prerequisites
* Packages:
    * pycrypto`>=2.6.1`
    * rich`>=8.0.0`
    * click`>=7.1.2`
    * click-option-group`>=0.5.1`

## Installation
To install `ciphit`, you have to clone the repo and checkout to `./ciphit`
 ```sh
 git clone https://github.com/sgrkmr/ciphit.git
 cd ciphit
 ```
Now, you may install `ciphit` via either of these two commands:
 ```bash
 pip install .
 ```
 ```bash
 python setup.py install
 ```
`ciphit` is now installed.<br/>for eg. to show the `help` message, use:
 ```bash
 ciphit --help
 ```
<p><b>Make sure you run these commands in Terminal/CMD/PowerShell or whatever you use.</b></p>

## License
Licensed under [MIT](https://opensource.org/licenses/MIT).


