An open API service indexing awesome lists of open source software.

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.

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:
* Python3

GUI:
* Tkinter

Database:
* Mysql

Cryptography/Password/OTP libraries:
* RSA
* Bcrypt
* PyOTP

CLI 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
```