Posts

Showing posts with the label offlineapp

🔐 Fuzzu Encryptor – Python GUI for Text & File Security | CustomTkinter App

Image
  Demo : Click Video 👇👇👇 Features : Live Demo Snapshots (Add screenshots of GUI) How it works: Text encryption/decryption File protection workflow Why this project is unique (offline + visual + secure) Download code (optional GitHub link) Related Shorts or projects by FuzzuTech Code : import customtkinter as ctk from tkinter import filedialog, messagebox from cryptography.fernet import Fernet import os # ------------------------- # Appearance and Theme # ------------------------- ctk.set_appearance_mode("dark") ctk.set_default_color_theme("blue") # ------------------------- # Main App Setup # ------------------------- app = ctk.CTk() app.title("Fuzzu Encryptor | Modern GUI") app.geometry("600x500") # ------------------------- # Load or Create Key # ------------------------- def load_or_create_key():     if os.path.exists("key.key"):         with open("key.key", "rb") as f:             return f.re...