Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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++

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