Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vschwaberow/genhash
A tool to generate hashes on command line
https://github.com/vschwaberow/genhash
command-line command-line-tool crypto cryptography generator hashing
Last synced: 3 months ago
JSON representation
A tool to generate hashes on command line
- Host: GitHub
- URL: https://github.com/vschwaberow/genhash
- Owner: vschwaberow
- License: mit
- Created: 2019-09-30T08:26:50.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-09-10T10:45:34.000Z (5 months ago)
- Last Synced: 2024-09-10T12:18:09.703Z (5 months ago)
- Topics: command-line, command-line-tool, crypto, cryptography, generator, hashing
- Language: Go
- Size: 5.13 MB
- Stars: 6
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# genhash
genhash is a tool to generate hashes on the commandline from stdio.
It can be used to generate single or multiple hashes for usage in password databases or even in penetration testing scenarios where you want to test password cracking tools.
## Install
genhash is written in Go. You can install the tool with your go installation using following command:
>
> go get -u github.com/vschwaberow/genhash
>Or you've got the choice to download a binary distribution package under Releases.
## Usage
You can either provide a text string as argument, to be hashed by one of the program supported hash algorithms.
>
> genhash
>Or you can provide a list of text strings to be hashed over the stdin
>
> cat | genhash -s
>You can list all algorithms over the help function.
Supported are:
* Argon2 hash
* Bcrypt hash
* LanManager hash
* MD4 hash
* MD5 hash
* NTLM hash
* Generate random bytes of size provided
* RIPEMD160 hash
* SHA-1 hash
* SHA2-224 hash
* SHA2-256 hash
* SHA2-512 hash
* SHA3-224 hash
* SHA3-256 hash
* SHA3-512 hash
* Tiger hash
* UUID-1 random string
* UUID-4 random string
* Whirlpool hash