https://github.com/sycanz/secur-image
This project basically encrypts a password with a public key encryption and stores it in an image with steganography.
https://github.com/sycanz/secur-image
encryption mysql python steganography tkinter
Last synced: 2 months ago
JSON representation
This project basically encrypts a password with a public key encryption and stores it in an image with steganography.
- Host: GitHub
- URL: https://github.com/sycanz/secur-image
- Owner: sycanz
- Created: 2024-05-23T17:11:03.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-07-28T08:14:24.000Z (9 months ago)
- Last Synced: 2025-01-18T11:37:24.113Z (3 months ago)
- Topics: encryption, mysql, python, steganography, tkinter
- Language: Python
- Homepage:
- Size: 57.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Secur-Image 🔒
Secur-Image was originally my project for [Hackerspace's](https://hackerspacemmu.rocks/) hackathon that I continued to work on after. The shortest way you could possible explain this program is it's a password manager.
***Note: This is still an ongoing project so updates are to be expected***## How does it work? 🧐
This program generate/insert(user input) a password, encrypts the password with RSA and stores half the private key in database and the other half on a flash drive. Then it signs the encrypted password with SHA-256 before embedding it into an image of user's choice with steganography technique (steghide). All while storing everything into a database.## General program flow 🌊
User logs into their account (create if don't have one), prompted for MFA (TOTP), choose to insert/generate/decrypt passwords or list/delete image.## Tech Stack ⚛️
Programming Language:
* Python3GUI:
* TkinterDatabase:
* MysqlCryptography/Password/OTP libraries:
* RSA
* Bcrypt
* PyOTPCLI Tool:
* Steghide## PIP Modules 📚
This project uses virtual environment and the required PIP modules are in the `requirements.txt` file. Setup a [venv](https://www.freecodecamp.org/news/how-to-setup-virtual-environments-in-python/) in your repo and do:
```sh
pip install -r requirements.txt
```