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.
61 lines
2.7 KiB
61 lines
2.7 KiB
|
|
|
|
using System.Security.Cryptography;
|
|
using System.Text;
|
|
using Zncy.CloudCar.WeChat.Service.Models;
|
|
|
|
namespace Zncy.CloudCar.WeChat.Service.Utilities
|
|
{
|
|
/// <summary>
|
|
/// 签名验证类
|
|
/// </summary>
|
|
public class CheckSignature
|
|
{
|
|
/// <summary>在网站没有提供Token(或传入为null)的情况下的默认Token,建议在网站中进行配置。</summary>
|
|
public const string Token = "weixin";
|
|
|
|
/// <summary>检查签名是否正确</summary>
|
|
/// <param name="signature"></param>
|
|
/// <param name="postModel">需要提供:Timestamp、Nonce、Token</param>
|
|
/// <returns></returns>
|
|
public static bool Check(string signature, PostModel postModel) => Check(signature, postModel.Timestamp, postModel.Nonce, postModel.Token);
|
|
|
|
/// <summary>检查签名是否正确</summary>
|
|
/// <param name="signature"></param>
|
|
/// <param name="timestamp"></param>
|
|
/// <param name="nonce"></param>
|
|
/// <param name="token"></param>
|
|
/// <returns></returns>
|
|
#pragma warning disable CS8625 // 无法将 null 字面量转换为非 null 的引用类型。
|
|
public static bool Check(string signature, string timestamp, string nonce, string token = null) => signature == GetSignature(timestamp, nonce, token);
|
|
#pragma warning restore CS8625 // 无法将 null 字面量转换为非 null 的引用类型。
|
|
|
|
/// <summary>返回正确的签名</summary>
|
|
/// <param name="postModel">需要提供:Timestamp、Nonce、Token</param>
|
|
/// <returns></returns>
|
|
public static string GetSignature(PostModel postModel) => GetSignature(postModel.Timestamp, postModel.Nonce, postModel.Token);
|
|
|
|
/// <summary>返回正确的签名</summary>
|
|
/// <param name="timestamp"></param>
|
|
/// <param name="nonce"></param>
|
|
/// <param name="token"></param>
|
|
/// <returns></returns>
|
|
#pragma warning disable CS8625 // 无法将 null 字面量转换为非 null 的引用类型。
|
|
public static string GetSignature(string timestamp, string nonce, string token = null)
|
|
#pragma warning restore CS8625 // 无法将 null 字面量转换为非 null 的引用类型。
|
|
{
|
|
token = token ?? "weixin";
|
|
string s = string.Join("", ((IEnumerable<string>)new string[3]
|
|
{
|
|
token,
|
|
timestamp,
|
|
nonce
|
|
}).OrderBy(z => z).ToArray());
|
|
byte[] hash = SHA1.Create().ComputeHash(Encoding.UTF8.GetBytes(s));
|
|
StringBuilder stringBuilder = new StringBuilder();
|
|
foreach (byte num in hash)
|
|
stringBuilder.AppendFormat("{0:x2}", num);
|
|
return stringBuilder.ToString();
|
|
}
|
|
}
|
|
}
|
|
|