2022-11-13 23:17:18 +08:00
|
|
|
using System;
|
2021-07-20 01:20:31 +08:00
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
namespace SKIT.FlurlHttpClient.Wechat.TenpayV3
|
|
|
|
{
|
|
|
|
public static class WechatTenpayClientResponseVerificationExtensions
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// <para>验证响应签名。</para>
|
2024-01-03 17:17:42 +08:00
|
|
|
/// <para>REF: https://pay.weixin.qq.com/docs/merchant/development/interface-rules/signature-verification.html </para>
|
|
|
|
/// <para>REF: https://pay.weixin.qq.com/docs/partner/development/interface-rules/signature-verification.html </para>
|
2021-07-20 01:20:31 +08:00
|
|
|
/// </summary>
|
|
|
|
/// <typeparam name="TResponse"></typeparam>
|
|
|
|
/// <param name="client"></param>
|
|
|
|
/// <param name="response"></param>
|
|
|
|
/// <returns></returns>
|
|
|
|
public static bool VerifyResponseSignature<TResponse>(this WechatTenpayClient client, TResponse response)
|
|
|
|
where TResponse : WechatTenpayResponse
|
2021-11-25 11:58:06 +08:00
|
|
|
{
|
|
|
|
return VerifyResponseSignature(client, response, out _);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// <para>验证响应签名。</para>
|
2024-01-03 17:17:42 +08:00
|
|
|
/// <para>REF: https://pay.weixin.qq.com/docs/merchant/development/interface-rules/signature-verification.html </para>
|
|
|
|
/// <para>REF: https://pay.weixin.qq.com/docs/partner/development/interface-rules/signature-verification.html </para>
|
2021-11-25 11:58:06 +08:00
|
|
|
/// </summary>
|
|
|
|
/// <typeparam name="TResponse"></typeparam>
|
|
|
|
/// <param name="client"></param>
|
|
|
|
/// <param name="response"></param>
|
|
|
|
/// <param name="error"></param>
|
|
|
|
/// <returns></returns>
|
|
|
|
public static bool VerifyResponseSignature<TResponse>(this WechatTenpayClient client, TResponse response, out Exception? error)
|
|
|
|
where TResponse : WechatTenpayResponse
|
2021-07-20 01:20:31 +08:00
|
|
|
{
|
2024-01-29 23:12:37 +08:00
|
|
|
if (client is null) throw new ArgumentNullException(nameof(client));
|
|
|
|
if (response is null) throw new ArgumentNullException(nameof(response));
|
2021-07-20 01:20:31 +08:00
|
|
|
|
2022-11-13 23:17:18 +08:00
|
|
|
return VerifyResponseSignature(
|
|
|
|
client,
|
|
|
|
responseTimestamp: response.WechatpayTimestamp,
|
|
|
|
responseNonce: response.WechatpayNonce,
|
2024-01-29 23:12:37 +08:00
|
|
|
responseBody: Encoding.UTF8.GetString(response.GetRawBytes()),
|
2022-11-13 23:17:18 +08:00
|
|
|
responseSignature: response.WechatpaySignature,
|
|
|
|
responseSignatureType: response.WechatpaySignatureType,
|
|
|
|
responseSerialNumber: response.WechatpayCertificateSerialNumber,
|
|
|
|
out error
|
|
|
|
);
|
2022-03-11 10:38:15 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// <para>验证响应签名。</para>
|
2024-01-03 17:17:42 +08:00
|
|
|
/// <para>REF: https://pay.weixin.qq.com/docs/merchant/development/interface-rules/signature-verification.html </para>
|
|
|
|
/// <para>REF: https://pay.weixin.qq.com/docs/partner/development/interface-rules/signature-verification.html </para>
|
2022-03-11 10:38:15 +08:00
|
|
|
/// </summary>
|
|
|
|
/// <param name="client"></param>
|
|
|
|
/// <param name="responseTimestamp"></param>
|
|
|
|
/// <param name="responseNonce">。</param>
|
|
|
|
/// <param name="responseBody"></param>
|
|
|
|
/// <param name="responseSignature"></param>
|
|
|
|
/// <param name="responseSerialNumber"></param>
|
|
|
|
/// <returns></returns>
|
|
|
|
public static bool VerifyResponseSignature(this WechatTenpayClient client, string responseTimestamp, string responseNonce, string responseBody, string responseSignature, string responseSerialNumber)
|
|
|
|
{
|
2022-11-13 23:17:18 +08:00
|
|
|
return VerifyResponseSignature(
|
|
|
|
client,
|
|
|
|
responseTimestamp: responseTimestamp,
|
|
|
|
responseNonce: responseNonce,
|
|
|
|
responseBody: responseBody,
|
|
|
|
responseSignature: responseSignature,
|
|
|
|
responseSignatureType: Constants.SignSchemes.WECHATPAY2_RSA_2048_WITH_SHA256,
|
|
|
|
responseSerialNumber: responseSerialNumber
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// <para>验证响应签名。</para>
|
2024-01-03 17:17:42 +08:00
|
|
|
/// <para>REF: https://pay.weixin.qq.com/docs/merchant/development/interface-rules/signature-verification.html </para>
|
|
|
|
/// <para>REF: https://pay.weixin.qq.com/docs/partner/development/interface-rules/signature-verification.html </para>
|
2022-11-13 23:17:18 +08:00
|
|
|
/// </summary>
|
|
|
|
/// <param name="client"></param>
|
|
|
|
/// <param name="responseTimestamp"></param>
|
|
|
|
/// <param name="responseNonce">。</param>
|
|
|
|
/// <param name="responseBody"></param>
|
|
|
|
/// <param name="responseSignature"></param>
|
|
|
|
/// <param name="responseSignatureType"></param>
|
|
|
|
/// <param name="responseSerialNumber"></param>
|
|
|
|
/// <returns></returns>
|
|
|
|
public static bool VerifyResponseSignature(this WechatTenpayClient client, string responseTimestamp, string responseNonce, string responseBody, string responseSignature, string responseSignatureType, string responseSerialNumber)
|
|
|
|
{
|
|
|
|
return VerifyResponseSignature(
|
|
|
|
client,
|
|
|
|
responseTimestamp: responseTimestamp,
|
|
|
|
responseNonce: responseNonce,
|
|
|
|
responseBody: responseBody,
|
|
|
|
responseSignature: responseSignature,
|
|
|
|
responseSignatureType: responseSignatureType,
|
|
|
|
responseSerialNumber,
|
|
|
|
out _
|
|
|
|
);
|
2022-03-11 10:38:15 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// <para>验证响应签名。</para>
|
2024-01-03 17:17:42 +08:00
|
|
|
/// <para>REF: https://pay.weixin.qq.com/docs/merchant/development/interface-rules/signature-verification.html </para>
|
|
|
|
/// <para>REF: https://pay.weixin.qq.com/docs/partner/development/interface-rules/signature-verification.html </para>
|
2022-03-11 10:38:15 +08:00
|
|
|
/// </summary>
|
|
|
|
/// <param name="client"></param>
|
|
|
|
/// <param name="responseTimestamp"></param>
|
|
|
|
/// <param name="responseNonce">。</param>
|
|
|
|
/// <param name="responseBody"></param>
|
|
|
|
/// <param name="responseSignature"></param>
|
|
|
|
/// <param name="responseSerialNumber"></param>
|
|
|
|
/// <param name="error"></param>
|
|
|
|
/// <returns></returns>
|
|
|
|
public static bool VerifyResponseSignature(this WechatTenpayClient client, string responseTimestamp, string responseNonce, string responseBody, string responseSignature, string responseSerialNumber, out Exception? error)
|
2022-11-13 23:17:18 +08:00
|
|
|
{
|
|
|
|
return VerifyResponseSignature(
|
|
|
|
client,
|
|
|
|
responseTimestamp: responseTimestamp,
|
|
|
|
responseNonce: responseNonce,
|
|
|
|
responseBody: responseBody,
|
|
|
|
responseSignature: responseSignature,
|
|
|
|
responseSignatureType: Constants.SignSchemes.WECHATPAY2_RSA_2048_WITH_SHA256,
|
|
|
|
responseSerialNumber,
|
|
|
|
out error
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// <para>验证响应签名。</para>
|
2024-01-03 17:17:42 +08:00
|
|
|
/// <para>REF: https://pay.weixin.qq.com/docs/merchant/development/interface-rules/signature-verification.html </para>
|
|
|
|
/// <para>REF: https://pay.weixin.qq.com/docs/partner/development/interface-rules/signature-verification.html </para>
|
2022-11-13 23:17:18 +08:00
|
|
|
/// </summary>
|
|
|
|
/// <param name="client"></param>
|
|
|
|
/// <param name="responseTimestamp"></param>
|
|
|
|
/// <param name="responseNonce">。</param>
|
|
|
|
/// <param name="responseBody"></param>
|
|
|
|
/// <param name="responseSignature"></param>
|
|
|
|
/// <param name="responseSignatureType"></param>
|
|
|
|
/// <param name="responseSerialNumber"></param>
|
|
|
|
/// <param name="error"></param>
|
|
|
|
/// <returns></returns>
|
|
|
|
public static bool VerifyResponseSignature(this WechatTenpayClient client, string responseTimestamp, string responseNonce, string responseBody, string responseSignature, string responseSignatureType, string responseSerialNumber, out Exception? error)
|
2022-03-11 10:38:15 +08:00
|
|
|
{
|
2024-01-29 23:12:37 +08:00
|
|
|
if (client is null) throw new ArgumentNullException(nameof(client));
|
2022-03-11 10:38:15 +08:00
|
|
|
|
2024-01-29 23:12:37 +08:00
|
|
|
bool ret = WechatTenpayClientSigningExtensions.VerifySignature(
|
2022-11-13 23:17:18 +08:00
|
|
|
client,
|
|
|
|
strTimestamp: responseTimestamp,
|
|
|
|
strNonce: responseNonce,
|
|
|
|
strContent: responseBody,
|
|
|
|
strSignature: responseSignature,
|
2024-01-29 23:12:37 +08:00
|
|
|
strSignScheme: responseSignatureType,
|
2022-11-13 23:17:18 +08:00
|
|
|
strSerialNumber: responseSerialNumber,
|
|
|
|
out error
|
|
|
|
);
|
|
|
|
|
2024-01-29 23:12:37 +08:00
|
|
|
if (!ret)
|
|
|
|
error ??= new Exception($"Failed to verify response. Maybe the raw signature \"{responseSignature}\" is invalid.");
|
2022-11-13 23:17:18 +08:00
|
|
|
|
2022-05-09 19:28:47 +08:00
|
|
|
return ret;
|
2021-07-20 01:20:31 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|