public string GetPaySign() { var source = this._deliverNotifyRequest.GetSignSource(); //// source.Add("appkey", wxPayConfig.AppKey); var computeSign = wxPayHelper.GetBizSign(source); return(computeSign.ToUpper()); }
public bool IsPaySignPassed(string notifyPaySign) { var computeSign = wxPayHelper.GetBizSign(this._alarmResponse.GetSignSource()); return(computeSign.ToUpper().Equals(notifyPaySign.ToUpper())); }