Metadata-Version: 2.1
Name: PythonCrypto
Version: 1
Summary: NORMAL TEXT TO CIPHER TEXT
Home-page: https://github.com/WIZARD00007/PyCrypto.git
Author: Akshay
Author-email: akshaysavanoor@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.10
Classifier: License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE.txt

PythonCrypto
* This module contain special algorithm which converts normal text to cipher text
* once you enter text with encryption key, text will be converted cipher text. which is nearly impossible to decrpyt without using decryption key.
* increase integrity. 
```python
 #importing encryptor
 from PythonCrypto import Encrypter
 #usage of Encrpter
 Encrypter('text','passkey')
 
 #importing decrypter
 from PythonCrypto import Decrypter
 Decrypter('cipherText','passkey')
```
Developing PythonCrypto
* To install PythonCrypto, along with the tools you need to develop
   and run tests, run the following
  in your virtualenv.
```bash
$ pip install -e .[dev]
```
Installing in linux
```bash
$ git clone https://github.com/WIZARD00007/PyCrypto.git
$ cd PyCrypto
$ ls
Then you can navigate to required directory

```
In case of any error
* python3 -m  pip install --upgrade pip

For more information
[click here](https://github.com/WIZARD00007/)


