Home InstaEncrypt
Post
Cancel

InstaEncrypt

About the Tool

This is an Open Source AES Standard encrytion tool,
AES stands for Advanced Encrption Standard. It is a symmetric-key algorithm, meaning the same key is used for both encrypting and decrypting the data.

AES aes encryption

AES encryption has three different block ciphers: AES-128 (128 bit), AES-192 (192 bit) and AES-256 (256 bit). These block ciphers are named after the key length they use for encryption and decryption. All these ciphers encrypt and decrypt the data in 128-bit blocks but they use different sizes of cryptographic keys.

AES DESIGN _aes design

A file (temp_key.txt) for storing the encryption key(s) for file(s)/folder(s) encrypted using the tool is automatically created in the current working directory.
Always make sure to backup the encryption key if not the files cannot be reverted back….!!!

Built with Python 3

Prerequisites

  • Python3
    It is preinstalled in Ubuntu 20.04. To check the version use command :
1
python3 --version

If it is not preinstalled for some reason, proceed here and download as per requirement.

  • requirements.txt
    Run the following command in terminal to download the required packags for running the tool locally :
1
pip install -r requirements.txt

Contributing

  1. Fork the Project
  2. Create your Feature Branch (git checkout -b feature/aesEncryptionCode)
  3. Commit your Changes (git commit -m ‘Add something’)
  4. Push to the Branch (git push origin feature/aesEncryptionCode)
  5. Open a Pull Request

Follow the given commands or use the amazing GitHub GUI
Happy Contributing :)

This post is licensed under CC BY 4.0 by the author.