Archives

Encryption Methods Using Python

Simulate different Encryption methods here ➚ Overview Encryption methods can be broadly categorized into symmetric, asymmetric, and hashing (non-reversible transformations). 🔐 1. Symmetric Key Encryption Single key used for both encryption and decryption. Fast and suitable for bulk data encryption. Key must be securely shared between parties. Examples: AES (Advanced Encryption Standard): Block cipher, 128-bit…

Read More

Keystroke Logging Using Python

Overview A keylogger is a type of surveillance software that records every keystroke made on a system’s keyboard. Keyloggers can be used for both legitimate purposes like user activity monitoring or testing, and malicious intent such as stealing sensitive data. In this project, I developed a Python-based keylogger using the pynput library. The program captures…

Read More