Skip to content

jainamoswal/secureme

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 

Repository files navigation

This is a very basic library that encrypts and decrypts text. No matter what the text is !!!

Encrypt The Text

  1. It uses no external libraries. So, your text is secure with this library.
  2. The letter encrypted here is never the same as the result of any previous encrypted value.
  3. It encrypts and decrypts all the keys included the Rupee symbol with all the keywords present on the regular keyboards. If some don't work, create an issue asking for the letter to be added in the library via GitHub. We will soon improve it and deploy it in the new version.

How Can this happen?

This encrypts and decrypts the text as per your text length.

This means if Cat is encrypted, the result will be like 6>G.

Also, if Cake is encrypted, instead of 6>gp the result will be different like 2:An

So, decrypting the text without this library is difficult, but not impossible. Developers are on this issue and will soon improve this after ver 0.1.5

How to use it

How to install the library:-

This is for installing on Windows OS, For other systems, You can Google it or even visit Pypi.org for a detailed documentation.

1. To install this library:-

pip install secureme

2. To update this library:-

pip install secureme --upgrade

How to use the library :-

First, you will have to import this in your Python files by import secureme.

You can also import a single function from the library by from secureme import <Function Name Here>.

1. To Encrypt the text :-

secureme.encrypt(<Any Text Here>)

2. To Decrypt the Encrypted value :-

secureme.decrypt(<Encrypted Text Here>)

3. To check that this library works for your text or not, Use :-

secureme.decrypt(secureme.encrypt(<Your Text Goes Here>))

Then you can do whatever you want to do with the Encrypted text or with Decrypted text.

This can also be used for decrypting the passwords which are saved on the Google Sheets or Excel Sheet. The decrypted Passwords can be retrieved by a Telegram Bot or any other service you prefer.

For more information you can contact me on Social Media via Telegram or E-Mail

Contributors 1 2 3 4 5
Names Jainam Shivam King Phyte Ayesha This is only reserved for you


Note:-

From later versions after 0.1.5 the Encrypted text with versions below 0.1.5 won’t be Decrypted after the up-gradation of this library, you will need to Save all the encrypted text in the normal Text and then Re-Encrypt it. This is done for giving better security to your text. If you don't want to update, Don't. It's your wish. Upgrading gives extra security to prevent anyone to break the Encrypted text. As the version levels up, the security also levels up. So, it is advised to keep this library up-to-date !!