🔐 AES Encryptor GUI App in Python – FuzzuTech
Demo : Click Video 👇👇👇 Features : Offline AES Encryption Tool GUI built with Tkinter Encrypt & Decrypt any text Open-source Python Project Hacker-style themed UI Code : import tkinter as tk from tkinter import messagebox, scrolledtext from Crypto.Cipher import AES from Crypto.Random import get_random_bytes import base64 class AESEncryptorApp: def __init__(self, root): self.root = root self.root.title("AES Encryptor GUI") self.root.geometry("500x600") self.root.configure(bg="#121212") self.key = get_random_bytes(16) tk.Label(root, text="Enter Text to Encrypt:", fg="white", bg="#121212", font=("Arial", 12)).pack(pady=10) self.input_text = scrolledtext.ScrolledText(root, width=50, height=5, font=("Arial", 10)) self.input_text.pac...