A Small Program in Python used to Encrypt an Decrypt all files(* . *) Using AES256-CBC Algorithm.
Give a star if you liked it!!
- Install pyAesCrypt using "pip install pyAesCrypt".
- Browse for the File and then Encrypt or Decrypt it.
- First you Browse for a file (* . * ) and then you Enter the Buffer Size which has been set for 64Kb Default Value. Buffer size is used for Encrypting very big Files Wherein you specify the size and the Big File is Encrypted in Chunks of the Specified Size Otherwise whole Text/Binary Data will be Loaded in the Memory Overloading it and Eventually Crashing your PC. Now it doesnt bother you for Small Files but Lets Suppose you want to Encrypt a 4GB file and you Have 4GB RAM then whole Binary Data of the 4GB File will be Loaded into the Memory at Once Causing Problems.
- Then You Specify a Password (12345 - Default) which will be needed to Decrypt the File.
- You can Check the CheckButton if you Want the Original File to Be Deleted while Encrypting or if you want the Encrypted File To Be Deleted while Decrypting.
- The Algorithm used is AES256-CBC Algorithm
- AES is a mathematical function called pseudo-random permutation. It works on a block of fixed size and produces another block of the same size that is computationally indistinguishable from random data.
- AES in CBC mode splits the stream into 16-byte blocks. Each block is encrypted using AES and the result is sent to output and XORed with the following block before it gets encrypted.
If you want me to add a Particular Feature in the Source then
- Goto Issues and Create a New Issue
- There Select a Feature Request Template and Click Get Started
- Write Accordingly
- OR Contact me at [email protected]
- To Add Functionality of Encrypting Folders.
- To Add Functionality To Shred Data so that it Cannot be Recovered.