Quantum-Safe File Encryptor – Python GUI (AES + Post-Quantum Encryption) | FuzzuTech
Demo : Click Video 👇👇👇 Features: 🧠 PyQt6 GUI 🔐 Hybrid AES + PQC Encryption ⚙️ Encrypt/Decrypt with .enc & .meta key system 💾 Educational Demo for Python Developers Code : """ quantum_safe_encryptor.py Single-file Quantum-Safe File Encryptor (Demo) - Modern PyQt6 GUI - AES-256-GCM (via cryptography) - Optional Post-Quantum KEM via liboqs Python bindings (if installed) - Saves .enc file and .meta (pk::ct) when PQC is used, or .key when using symmetric key. Requirements: - Python 3.9+ - pip install PyQt6 cryptography - Optional (for PQC): install liboqs C library and liboqs-python / pyoqs (platform-specific) z Run: python quantum_safe_encryptor.py """ import sys, os, traceback from pathlib import Path from functools import partial # --- Crypto imports --- try: from cryptography.hazmat.primitives.ciphers.aead import AESGCM from cryptography.hazmat.primitives.kdf.hkdf import HKDF from cryptography.hazmat.primitives i...