Metadata-Version: 2.1
Name: enrocrypt
Version: 1.1.3
Summary: This is a Python Module For Encryption, Hashing And Other stuff
Home-page: https://github.com/Morgan-Phoenix/EnroCrypt
Author: Morgan-Phoenix
Author-email: mikebrain61@gmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/Morgan-Phoenix/EnroCrypt/issues
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
License-File: LICENSE

# EnroCrypt
This is a Python Module For Encryption, Hashing And Other Basic Stuff You Need, With Secure Encryption And Strong Salted Hashing You Can Do Whatever You Want To <br> 
[![Downloads](https://static.pepy.tech/personalized-badge/enrocrypt?period=total&units=international_system&left_color=yellow&right_color=red&left_text=Downloads)](https://pepy.tech/project/enrocrypt)<br><h3>[Docs](https://morgan-phoenix.github.io/EnroCrypt/Docs)</h3>
## Installation
EnroCrypt Is Avaliable On <a style="text-decoration:none;" herf="https://pypi.org/projects/enrocrypt">PyPi </a>You Can Install It As Follows:<br>
```` pip install -U enrocrypt````
## Manual Installation 
If For Some Reason You Can't Install EnroCrypt From PyPi You Can Download It Manually Too:
* Clone This Repo 
* Cut-Paste This Repo In Your Python Scripts Path
* Enter In The Folder Where You See "setup.py" file
* shift+right click in the Folder And Click On "Open Powershell window Here"
* Type `python setup.py install`<br>
After Following All The Steps Mentioned Above (If You Don't Get An Error) EnroCrypt Is Installed, Now You Can Import It Right Away
## Features
* Strong Encryption
* Strong Salted Hashing
* File Encryption-Decryption
* Some Basic Functions
## Usage 
```python
    # For Encryption
    from enrocrypt import core
    value = core.Encrypt(b'text')
    print(value)
    # For Decryption
    original_value = core.DecryptList(value)
    print(original_value)
```
There Is Also a `Decrypt`Function, But In This Function You Have To Enter The Key And The Data Seperatly

(See Discussion For More Info)


