Metadata-Version: 2.1
Name: AdvancedFernetDataEncryption
Version: 1.0.1
Summary: An encryption that uses the Fernet assymetric key generator and random values to create a secure token and key that can be stored and still be unreadable to any user.
Project-URL: Homepage, https://github.com/garfield8123/AdvancedFernetDataEncryption
Project-URL: Bug Tracker, https://github.com/garfield8123/AdvancedFernetDataEncryption/issues
Author-email: garfield8123 <garfield8123@gmail.com>
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.5
Description-Content-Type: text/markdown

# **AdvancedFernetDataEncryption**

An encryption that uses the Fernet symetric key generator and random values to create a secure token and key that can be stored and still be unreadable to any user. 

## **Methods Supported**
- generateSessionToken(<AnyString>): Generates a random 120 length string and encrypts with fernet symetric algorithm. Used for Web Sessions `return Token, Key`
- dataEncryption(<PlainTxt>): Generates a random 120 length string and shoves it randomly in the PlainTxt and shoves the token randomly in the 120 length string generated. Then all of this information is encrypted with the fernet algorithm. `return <string>`
- dataDecrpytion(<EncyptedTxt>): Decodes the giant encrypted text generated and creates a plain text version `return <String>`
- decryption(<EncryptedTxt>): Decodes the basic encrypted text generated and creates a plain text version `return <String>` Recommended to use only this method for the generated session token

## **Basic Usage Example**
```python
from Encryption.AdvancedFernetDataEncryption import *

text = "Hello I would like to be encrypted
encryptedText = dataEncryption(text)
unencryptedText = dataDecrpytion(encryptedText)
```

When run these following lines the text will be encrypted and would be unecryptable without the usage of the Token generated, which is randomly generated for each encrypted text.