keccak_cli_tool 0.1.1

Simple Keccak256 hash CLI tool
Documentation
1
2
3
4
5
use primitive_types::H256;

pub fn return_hash(digest: &mut [u8]) -> H256 {
    keccak_hash::keccak(digest)
}