使用HMAC-SHA1计算摘要
String hmacSha1(String msg, String key) { return hex.encode(Hmac(sha1, key.codeUnits).convert(msg.codeUnits).bytes); }