HashItUp is a simple Python script that allows users to hash their messages using the SHA-256 algorithm. It provides a basic command-line interface where users can input their message, and the script will compute and display the corresponding SHA-256 hash.
- Hash any textual message using SHA-256.
- Simple and straightforward command-line interface.
- Delays between messages for a conversational effect.
- Python 3
- hashlib library for hashing
-
Clone the repository:
git clone https://github.com/secusavvy/HashItUp.git cd HashItUp
-
Run the script:
HashItUp.py
-
Follow the prompts to enter your message.
-
The script will compute the SHA-256 hash of your message and display it.
- The script starts by introducing itself and explaining its purpose.
- It prompts the user to input a message.
- It encodes the message into bytes and computes its SHA-256 hash using the
hashlib
library. - Finally, it displays the computed hash value in hexadecimal format.