package core.crypto
HashingAlgorithm :: enum { MD5 :: 0 SHA1 :: 1 SHA256 :: 2 }
hmac :: (data: [] u8, key: [] u8, alg: HashingAlgorithm) -> [] u8
Computes the Hashed Message Authentication Code of the provided data, with the provided key, using the specified algorithm.