Last active
June 6, 2023 16:16
-
-
Save miguelmota/60259aed8ce95477131c0a1f4f31e0da to your computer and use it in GitHub Desktop.
keccak256 cli
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# macOS | |
brew install sha3sum | |
# archlinux | |
yay -S sha3sum | |
# usage | |
echo -n hello | keccak-256sum | |
1C8AFF950685C2ED4BC3174F3472287B56D9517B9C948127319A09A7A36DEAC8 - |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Am using
Kali Linux nethunter
and I install sha3sum with the commandpip install sha3sum
But when I run the command
echo -n hello | keccak-256sum
output
keccak-256sum: command not found
How can I resolve this?