https://github.com/raisess/hash-generator
A simple password/random-hash generator writen in cpp.
https://github.com/raisess/hash-generator
cpp gcc hash hash-generator open-source random-algorithm random-hashes random-string-generators
Last synced: 5 months ago
JSON representation
A simple password/random-hash generator writen in cpp.
- Host: GitHub
- URL: https://github.com/raisess/hash-generator
- Owner: Raisess
- License: mit
- Created: 2020-08-22T13:21:12.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-08-23T14:08:28.000Z (over 5 years ago)
- Last Synced: 2023-03-02T22:40:58.770Z (over 2 years ago)
- Topics: cpp, gcc, hash, hash-generator, open-source, random-algorithm, random-hashes, random-string-generators
- Language: C++
- Homepage:
- Size: 15.6 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ๐ค RANDOM HASH GENERATOR

## โ๏ธ CONFIGURATION
- You need the gcc and nodejs (to use npm) installed.
## ๐ HASH OPTIONS
You can edit this options in **main.cpp**.
```cpp
// hash string length
#define LENG 12 // default is 8
// if hash have symbols
#define SYMB true // default is true
// debug mode
#define DEBU true // define is true
```
## ๐ฎ COMPILING
Clone the repo, go to repo folder and then:
```shell
npm run compile
```
## ๐ก RUNNING
```shell
npm run start
```
## ๐งน CLEANING BUILD
To make this you need the project compiled before.
Run this command:
```shell
npm run clean
```
### ๐ค CREDITS
- Created by [Raisess](https://github.com/Raisess)
- License - MIT