Crates.io | keccak256-cli |
lib.rs | keccak256-cli |
version | 0.2.1 |
source | src |
created_at | 2022-04-15 20:57:53.932973 |
updated_at | 2022-04-16 20:58:33.800474 |
description | keccak256 encryption cli program; accepts input text from stdin. Suitable for commandline users |
homepage | |
repository | https://github.com/haxpor/keccak256-cli |
max_upload_size | |
id | 568693 |
size | 23,950 |
keccak256 encryption cli program; accepts input text from stdin. Suitable for commandline users.
It is the same algorithm used to encode method signature to get method id as shown on those blockchain scans e.g. etherscan.com, bscscan.com, or polygonscan.com
cargo install keccak256-cli
$ echo "approve(address,uint256)" | keccak256
0x095ea7b334ae44009aa867bfb386f5c3b4b443ac6f0ee573fa91c4608fbadfba
--method-id
flag to output as method id; suitable for method signature$ echo "approve(address,uint256)" | keccak256 --method-id
0x095ea7b3
--no-0x
flag to avoid prefixed 0x
$ echo "approve(address,uint256)" | keccak256 --method-id --no-0x
095ea7b3
$ cat myfile.txt
line1
line2
line3
$ cat myfile.txt | keccak256
0xf500641328ecab72baae3555278fc470860a4a243e62e9534120d8405def6143
$ cat myfile.txt | keccak256 --each-line
0x231e770f96ffa24e1fec6b52fd47915ab8c491356d1d02de165a5bf6f3d72280
0x12221da17783f65564f9fab0b1bc89c5c556b4268b4c98279ead6beb6fd86ceb
0x8bb5ab46551d22e650ad150d9cefef6ab6e65e0a2ae3a71c47c645a777314f19
$ cat myfile.txt | keccak256 --each-line --no-0x --method-id
231e770f
12221da1
8bb5ab46
MIT, Wasin Thonkaew