Skip to main content

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 description

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(): Generates a random 120 length string and encrypts with fernet symetric algorithm. Used for Web Sessions return Token, Key
  • dataEncryption(): 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(): Decodes the giant encrypted text generated and creates a plain text version return <String>
  • decryption(): 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

Package Installation

pip install AdvancedFernetDataEncryption More Info can be found on pypi.org here

Basic Usage Example

from Encryption.AdvancedFernetDataEncryption import *

text = "Hello I would like to be encrypted
encryptedText = dataEncryption(text, MinLength=20, MaxLength=100)
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.

Example of Encryption Result

image

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

advancedfernetdataencryption-1.1.tar.gz (4.3 kB view hashes)

Uploaded Source

Built Distribution

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page