v1.2.2
What's Changed
- add mode: halfmd5 -m 5100 by @cyclone-github in #20
- added mode: morsedecode 9ef6c99
- chore(deps): bump golang.org/x/crypto from 0.43.0 to 0.44.0 in the minor-and-patch group by @dependabot[bot] in #17
- chore(deps): bump golang.org/x/crypto from 0.44.0 to 0.45.0 by @dependabot[bot] in #18
- chore(deps): bump golang.org/x/crypto from 0.46.0 to 0.47.0 in the minor-and-patch group by @dependabot[bot] in #19
Full Changelog: v1.2.0...v1.2.2
Install latest release:
go install github.com/cyclone-github/hashgen@latest
Install from latest source code (bleeding edge):
go install github.com/cyclone-github/hashgen@main
Compile from source:
- This assumes you have Go and Git installed
git clone https://github.com/cyclone-github/hashgen.git# clone repocd hashgen# enter project directorygo mod init hashgen# initialize Go module (skips if go.mod exists)go mod tidy# download dependenciesgo build -ldflags="-s -w" .# compile binary in current directorygo install -ldflags="-s -w" .# compile binary and install to $GOPATH
- Compile from source code how-to: