How to print the hash as string?
use sha3::{Digest, Keccak256};
fn main() {
let vote = "Alice".to_owned();
let mut hasher = Keccak256::new();
hasher.update(vote.as_bytes());
let result = hasher.finalize();
let hashstring = result.to_owned();
println!("{:?}", hashstring);
// [129, 55, 107, 152, 104, 178, 146, 164, 106, 28, 72, 109, 52, 78, 66, 122, 48, 136, 101, 127, 218, 98, 155, 95, 74, 100, 120, 34, 211, 41, 205, 106]
// I need the hex string, instead of numbers
}