#region Apache License Version 2.0
/*----------------------------------------------------------------
Copyright 2019 Jeffrey Su & Suzhou Senparc Network Technology Co.,Ltd.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file
except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the
License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
either express or implied. See the License for the specific language governing permissions
and limitations under the License.
Detail: https://github.com/JeffreySu/WeiXinMPSDK/blob/master/license.md
----------------------------------------------------------------*/
#endregion Apache License Version 2.0
/*----------------------------------------------------------------
Copyright (C) 2019 Senparc
文件名:CheckSignature.cs
文件功能描述:检测签名
创建标识:Senparc - 20150211
修改标识:Senparc - 20150303
修改描述:整理接口
修改标识:Senparc - 20151005
修改描述:v13.3.1 提供带PostModel参数的方法
修改标识:Senparc - 20151005
修改描述:v13.8.7 fixbug:Check(string signature, PostModel postModel)方法调用错误
----------------------------------------------------------------*/
using System.Linq;
using System.Security.Cryptography;
using System.Text;
using Senparc.Weixin.MP.Entities.Request;
//using System.Web.Security;
namespace Senparc.Weixin.MP
{
///
/// 签名验证类
///
public class CheckSignature
{
///
/// 在网站没有提供Token(或传入为null)的情况下的默认Token,建议在网站中进行配置。
///
public const string Token = "weixin";
///
/// 检查签名是否正确
///
///
/// 需要提供:Timestamp、Nonce、Token
///
public static bool Check(string signature, PostModel postModel)
{
return Check(signature, postModel.Timestamp, postModel.Nonce, postModel.Token);
}
///
/// 检查签名是否正确
///
///
///
///
///
///
public static bool Check(string signature, string timestamp, string nonce, string token = null)
{
return signature == GetSignature(timestamp, nonce, token);
}
///
/// 返回正确的签名
///
/// 需要提供:Timestamp、Nonce、Token
///
public static string GetSignature(PostModel postModel)
{
return GetSignature(postModel.Timestamp, postModel.Nonce, postModel.Token);
}
///
/// 返回正确的签名
///
///
///
///
///
public static string GetSignature(string timestamp, string nonce, string token = null)
{
token = token ?? Token;
var arr = new[] { token, timestamp, nonce }.OrderBy(z => z).ToArray();
var arrString = string.Join("", arr);
//var enText = FormsAuthentication.HashPasswordForStoringInConfigFile(arrString, "SHA1");//使用System.Web.Security程序集
var sha1 = SHA1.Create();
var sha1Arr = sha1.ComputeHash(Encoding.UTF8.GetBytes(arrString));
StringBuilder enText = new StringBuilder();
foreach (var b in sha1Arr)
{
enText.AppendFormat("{0:x2}", b);
}
return enText.ToString();
}
}
}