You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
329 B

2 years ago
using System;
using System.Collections.Generic;
using System.Text;
namespace Senparc.Weixin.TenPayV3.TenPayHttpClient.Verifier
{
public interface IVerifier
{
bool Verify(string wechatpayTimestamp, string wechatpayNonce, string wechatpaySignatureBase64, string content, string pubKey); // 验证签名
}
}