SecureSymmetric is just a cool name we gave to our project but in reality it's just a simple program that encrypts file using fernet's symmetric secret key based authenticated cryptography.
Learn more about Fernet at cryptography.io
Important
This program is intended for educational and legitimate purposes only. It provides encryption and decryption functionalities using Fernet cryptography, designed to protect data privacy and security. However, it is crucial to note that misuse of this software for malicious activities such as ransomware attacks is strictly prohibited and unlawful.
The developers of this program, do not endorse, promote, or encourage any illegal or unethical use of this software. Users are solely responsible for their actions and must comply with applicable laws and regulations in their jurisdictions.
By using this software, you agree to use it responsibly and ethically. The developer shall not be held liable for any misuse or unlawful activities conducted using this program.
Note
As said earlier, this is just a simple code that we wrote to learn about how symmetric encrytion works and the usage of fernet. This is totally a personal project and we are not a good developer at all, so please test the code on test files before using on your important files. Feel free to make necessary changes from your side.
$ python3 secure.py
usage: secure.py [OPTIONS...] [PATH...]
Encrypts and Decrypts Data
options:
-h, --help show this help message and exit
-e, --encrypt Encrypt the file
-d, --decrypt Decrypt the file
-p, --print Print decrypted data directly
-D, --dir Work with a whole directory of files
-x, --extensions Specify specific file extensions
-u, --upload Upload file|s on discord
-o, --output Output directory path
-r, --remove Removes original file|s after encrytion or decryption
-z, --zip File|s get Zipped and then encrypted
Made with <3 by @syr1ne && @1byteBoy
Tip
While main options are self-explainatory but to understand more about what each flags/options actually does visit Usage WiKi
