Function final [src]

Returns a hex encoded hash of the inputs, mutating the state of the hasher.

Prototype

pub fn final(hh: *HashHelper) HexDigest

Parameters

hh: *HashHelper

Source

pub fn final(hh: *HashHelper) HexDigest { var bin_digest: BinDigest = undefined; hh.hasher.final(&bin_digest); return binToHex(bin_digest); }