pub fn hex_hmac_sha1(key: &[u8], content: &[u8]) -> String
Hex encoded HMAC with SHA1 hash.
Use this function instead of hex::encode(hmac_sha1(key, content)) can reduce extra copy.
hex::encode(hmac_sha1(key, content))