معرفی شرکت ها


advancedfernetdataencryption-1.0


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

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.
ویژگی مقدار
سیستم عامل OS Independent
نام فایل advancedfernetdataencryption-1.0
نام advancedfernetdataencryption
نسخه کتابخانه 1.0
نگهدارنده []
ایمیل نگهدارنده []
نویسنده -
ایمیل نویسنده garfield8123 <garfield8123@gmail.com>
آدرس صفحه اصلی -
آدرس اینترنتی https://pypi.org/project/advancedfernetdataencryption/
مجوز -
# **AdvancedFernetDataEncryption** 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. ## **Methods Supported** - passwordToken(): Generates a random 120 length string and encrypts with fernet assymmetric algorithm `return <string>` - generateSessionToken(<AnyString>): Generates a random 120 length string and encrypts with fernet assymetric algorithm. Used for Web Sessions `return Token, Key` - dataEncryption(<PlainTxt>, <Token>): 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>` - encryption(<AnyString>): Base method that simply adds a fernet encryption. `return Token, Key` - dataDecrpytion(<EncyptedTxt>, <Token>): Decodes the giant encrypted text generated and creates a plain text version `return <String>` - decryption(<AnyString>): Base method that simply decodes the fernet encryption. `return <String>` ## **Basic Usage Example** ```python from AdvancedFernetDataEncryption import * Token = passwordToken() text = "Hello I would like to be encrypted encryptedText = dataEncryption(text, Token) unencryptedText = dataDecrpytion(text, Token) ``` When run these following lines the text will be encrypted and would be unecryptable without the usage of the Token generated.


زبان مورد نیاز

مقدار نام
>=3.5 Python


نحوه نصب


نصب پکیج whl advancedfernetdataencryption-1.0:

    pip install advancedfernetdataencryption-1.0.whl


نصب پکیج tar.gz advancedfernetdataencryption-1.0:

    pip install advancedfernetdataencryption-1.0.tar.gz