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.
genhash alternatives and similar packages
Based on the "Command Line" category.
Alternatively, view genhash alternatives based on common mentions on social networks and blogs.
-
urfave/cli
A simple, fast, and fun package for building command line apps in Go -
Rich Interactive Widgets for Terminal UIs
Terminal UI library with rich, interactive widgets — written in Golang -
go-prompt
Building powerful interactive prompts in Go, inspired by python-prompt-toolkit. -
elvish
Elvish = Expressive Programming Language + Versatile Interactive Shell -
tcell
Tcell is an alternate terminal package, similar in some ways to termbox, but better in others. -
survey
A golang library for building interactive and accessible prompts with full support for windows and posix terminals. -
cointop
A fast and lightweight interactive terminal based UI application for tracking cryptocurrencies 🚀 -
pterm
✨ #PTerm is a modern Go module to easily beautify console output. Featuring charts, progressbars, tables, trees, text input, select menus and much more 🚀 It's completely configurable and 100% cross-platform compatible. -
The Platinum Searcher
A code search tool similar to ack and the_silver_searcher(ag). It supports multi platforms and multi encodings. -
progressbar
A really basic thread-safe progress bar for Golang applications -
pflag
Drop-in replacement for Go's flag package, implementing POSIX/GNU-style --flags. -
readline
Readline is a pure go(golang) implementation for GNU-Readline kind library -
uiprogress
A go library to render progress bars in terminal applications -
Git Town
Git workflow automation to keep branches in sync and reduce merge conflicts. -
asciigraph
Go package to make lightweight ASCII line graph ╭┈╯ in command line apps with no other dependencies. -
dotenv-linter
⚡️Lightning-fast linter for .env files. Written in Rust 🦀 -
mitchellh/cli
A Go library for implementing command-line interfaces. -
termenv
Advanced ANSI style & color support for your terminal applications -
CLI Color
🎨 Terminal color rendering library, support 8/16 colors, 256 colors, RGB color rendering output, support Print/Sprintf methods, compatible with Windows. GO CLI 控制台颜色渲染工具库,支持16色,256色,RGB色彩渲染输出,使用类似于 Print/Sprintf,兼容并支持 Windows 环境的色彩渲染 -
flaggy
Idiomatic Go input parsing with subcommands, positional values, and flags at any position. No required project or package layout and no external dependencies. -
uitable
A go library to improve readability in terminal apps using tabular data
Static code analysis for 29 languages.
Do you think we are missing an alternative of genhash or a related project?
Popular Comparisons
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