https://github.com/arkantrust/crypto_blender
Easy key and password generator made with python and a web UI
https://github.com/arkantrust/crypto_blender
Last synced: over 1 year ago
JSON representation
Easy key and password generator made with python and a web UI
- Host: GitHub
- URL: https://github.com/arkantrust/crypto_blender
- Owner: arkantrust
- License: mit
- Created: 2023-12-27T21:42:18.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-28T00:03:23.000Z (over 2 years ago)
- Last Synced: 2025-01-23T04:11:14.136Z (over 1 year ago)
- Language: Python
- Size: 30.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Crypto Blender
Slow python generator for strong passwords and hashed keys using SHA256 and SHA512. Made with python, fastapi and react.
You can run the generator by CLI or web UI.
## Prerequisites
- [Python](https://www.python.org/downloads/)
- [Docker](https://docs.docker.com/get-docker/) (for web UI only)
## CLI
To run the CLI app just create the venv, download packages and run the [`gen.py`](./backend/gen.py) file.
``` bash
cd backend
python3 -m venv .venv # maybe python if you're on windows
source .venv/bin/activate
pip install --upgrade -r requirements.txt
python3 gen.py
```
## Web UI
To run the web app you just need to have docker installed and run the [`compose.yaml`](./compose.yaml) file.
## License
[MIT](./LICENSE)