Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/foxfirecodes/hash-miner-cpp
A simple hash miner written in C++
https://github.com/foxfirecodes/hash-miner-cpp
Last synced: 5 days ago
JSON representation
A simple hash miner written in C++
- Host: GitHub
- URL: https://github.com/foxfirecodes/hash-miner-cpp
- Owner: foxfirecodes
- Created: 2017-11-30T22:19:40.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2017-11-30T22:27:05.000Z (about 7 years ago)
- Last Synced: 2024-12-25T05:21:08.083Z (12 days ago)
- Language: C++
- Size: 1000 Bytes
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Hash Miner
> A simple hash miner written in C++This simple program searches for a hash with the given prefix
## Usage
```bash
$ hash-miner
# Example usage and output:
$ hash-miner "Rayzr rocks" "faded"
1000000 : 14218cc06f85b7ae8acd23cf8f887735b1ef1fe7bae1e8ffacaa79ca462f5923
Input: Rayzr rocks
Prefix: faded
Nonce: 1655629
Hash: faded5e39eda9499a4ad4a2c474ada5759518d35997ec38b6b5c34d4d5add190
```## Building
```bash
$ ./build.sh
# OR
$ g++ ./main.cpp -o hash-miner
```