Popularity
0.8
Declining
Activity
1.1
Growing
6
3
0

Description

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.

Programming language: Go
License: MIT License
Tags: Utilities     Command Line     Hash     Cryptography     Signature    
Latest version: v0.1.7

genhash alternatives and similar packages

Based on the "Command Line" category.
Alternatively, view genhash alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of genhash or a related project?

Add another 'Command Line' Package

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