Posts

Showing posts with the label Python Short Projects

🔐 Password Hasher GUI in Python | MD5, SHA256, SHA512 – FuzzuTech

Image
  Demo : Click Video 👇👇👇 📄 Description: Want to hash passwords securely in Python with just one click? Here’s a beginner-friendly GUI tool made using tkinter and hashlib that supports MD5 , SHA256 , and SHA512 algorithms. This project is ideal for beginners in cybersecurity and Python GUI app development. 📚 Features : GUI with modern UI Multiple hash formats (MD5, SHA256, SHA512) Built with tkinter and hashlib Perfect for learning hashing concepts and password encryption basics Code : import tkinter as tk from tkinter import ttk, messagebox import hashlib # Function to hash the input text def hash_text():     text = input_text.get()     method = hash_method.get()     if not text:         messagebox.showwarning("Input Missing", "Please enter some text to hash.")         return     if method == "MD5":         result = hashlib.md5(text.encode()).hexdigest()...