Function peek [src]
Returns a hex encoded hash of the inputs, without modifying state.
Prototype
pub fn peek(hh: HashHelper) [hex_digest_len]u8 Parameters
hh: HashHelper Source
pub fn peek(hh: HashHelper) [hex_digest_len]u8 {
var copy = hh;
return copy.final();
}