The KMAC extendable output authentication function. KMAC is a keyed version of the cSHAKE function, with an optional context. It can be used as an SHA-3 based alternative to HMAC, as well as a generic keyed XoF (extendable output function).
pub fn KMac(comptime security_level: u11) type
pub fn KMac(comptime security_level: u11) type {
return KMacLike(security_level, 0x04, 24);
}