A simple Python CLI that converts any text into a Keccak-256 hash (the same hash function used by Ethereum).
- Hashes any string with Keccak-256
- Terminal banner via
pyfiglet - Lightweight and easy to run
pip install pycryptodome pyfiglet
## Files
- `keccak.py` — main script
## License
This project is free to use and modify.
python keccak.py <text>
Enter a word to hash with Keccak256: hello
keccak256 hash: 1c8aff950685c2ed4bc3174f3472287b56d9517b9c948127319a09a7a36deac8
python_keccak256_tool/
├── keccak.py # Main script
├── assets/
│ └── Screenshot ...
└── README.md
| Layer | Technology |
|---|---|
| Language | Python 3 |
| Hashing | pycryptodome (Crypto.Hash.keccak) |
| CLI banner | pyfiglet |
| Algorithm | Keccak-256 (Ethereum-compatible) |
