Function oneShot [src]

Prototype

pub fn oneShot(bytes: []const u8) [hex_digest_len]u8

Parameters

bytes: []const u8

Source

pub fn oneShot(bytes: []const u8) [hex_digest_len]u8 { var hasher: Hasher = hasher_init; hasher.update(bytes); var bin_digest: BinDigest = undefined; hasher.final(&bin_digest); return binToHex(bin_digest); }