fn Hmac(comptime Hash: type) type
Hash: type,
o_key_pad: [Hash.block_length]u8,
hash: Hash,
fn create(out: *[mac_length]u8, msg: []const u8, key: []const u8) void
No documentation provided.
fn final(ctx: *Self, out: *[mac_length]u8) void
fn init(key: []const u8) Self
fn update(ctx: *Self, msg: []const u8) void
undefined
comptime_int