Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jmdotdev/custom_tkinter_encrypt_decrypt_messages
Python Script To Encrypt and Decrypt Messages Using Fernet Encryption Algorithm
https://github.com/jmdotdev/custom_tkinter_encrypt_decrypt_messages
custom-tkinter decryption encryption fernet-encryption python3 tkinter
Last synced: about 1 month ago
JSON representation
Python Script To Encrypt and Decrypt Messages Using Fernet Encryption Algorithm
- Host: GitHub
- URL: https://github.com/jmdotdev/custom_tkinter_encrypt_decrypt_messages
- Owner: jmdotdev
- Created: 2023-05-24T05:51:12.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-05-31T09:41:44.000Z (over 1 year ago)
- Last Synced: 2024-05-29T03:36:29.463Z (7 months ago)
- Topics: custom-tkinter, decryption, encryption, fernet-encryption, python3, tkinter
- Language: Python
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Message Encryption Script
This is a simple python script that allows you to encrypt and decrypt messages using the Fernet encryption algorithm from the `cryptography` library. The application provides a user-friendly interface to input a message, encrypt it, and decrypt the encrypted message.
## Features
- Input any text message and encrypt it.
- Display the encrypted message.
- Decrypt the encrypted message and display the original message.
- Uses the Fernet encryption algorithm for secure encryption and decryption.## Requirements
- Python 3.x
- `cryptography` library (can be installed via `pip install cryptography`)## Usage
1. Clone the repository:
```bash
git clone https://github.com/your-username/message-encryption-app.git
```
2.Install Cryptography
```bash
pip install cryptography
```
3.Install tkinter and Customtkinter
```bash
pip install tkinter customtkinter==0.3
```
4.Run Script
```bash
python main.py
```