mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-04-05 17:37:54 +08:00
chore: upgrade dependencies
This commit is contained in:
parent
1e3ed8e9fb
commit
68c1a7ba93
@ -40,7 +40,7 @@
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="BouncyCastle.Cryptography" Version="2.0.0" />
|
||||
<PackageReference Include="BouncyCastle.Cryptography" Version="2.1.1" />
|
||||
<PackageReference Include="System.ValueTuple" Version="4.5.0" Condition="'$(TargetFramework)' == 'net461'" />
|
||||
<PackageReference Include="SKIT.FlurlHttpClient.Common" Version="2.6.0" />
|
||||
</ItemGroup>
|
||||
|
@ -40,7 +40,7 @@
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="BouncyCastle.Cryptography" Version="2.0.0" />
|
||||
<PackageReference Include="BouncyCastle.Cryptography" Version="2.1.1" />
|
||||
<PackageReference Include="System.ValueTuple" Version="4.5.0" Condition="'$(TargetFramework)' == 'net461'" />
|
||||
<PackageReference Include="SKIT.FlurlHttpClient.Common" Version="2.6.0" />
|
||||
</ItemGroup>
|
||||
|
@ -1,8 +1,8 @@
|
||||
using Xunit;
|
||||
using Xunit;
|
||||
|
||||
namespace SKIT.FlurlHttpClient.Wechat.Ads.UnitTests
|
||||
{
|
||||
public class TestCase_HashUtilityTests
|
||||
public class TestCase_ToolsHashUtilityTests
|
||||
{
|
||||
[Fact(DisplayName = "测试用例:MD5 信息摘要")]
|
||||
public void TestMD5Hash()
|
@ -1,8 +1,8 @@
|
||||
using Xunit;
|
||||
using Xunit;
|
||||
|
||||
namespace SKIT.FlurlHttpClient.Wechat.Api.UnitTests
|
||||
{
|
||||
public class TestCase_AESUtilityTests
|
||||
public class TestCase_ToolsAESUtilityTests
|
||||
{
|
||||
[Fact(DisplayName = "测试用例:AES-CBC 解密")]
|
||||
public void TestAESCBCDecryption()
|
@ -1,8 +1,8 @@
|
||||
using Xunit;
|
||||
using Xunit;
|
||||
|
||||
namespace SKIT.FlurlHttpClient.Wechat.Api.UnitTests
|
||||
{
|
||||
public class TestCase_HashUtilityTests
|
||||
public class TestCase_ToolsHashUtilityTests
|
||||
{
|
||||
[Fact(DisplayName = "测试用例:SHA-1 信息摘要")]
|
||||
public void TestSHA1Hash()
|
@ -2,7 +2,7 @@ using Xunit;
|
||||
|
||||
namespace SKIT.FlurlHttpClient.Wechat.Api.UnitTests
|
||||
{
|
||||
public class TestCase_WxMsgCryptorTests
|
||||
public class TestCase_ToolsWxMsgCryptorTests
|
||||
{
|
||||
[Fact(DisplayName = "测试用例:验签并解密回调数据")]
|
||||
public void TestVerifyAndDecryptEvent()
|
@ -1,9 +1,9 @@
|
||||
using System;
|
||||
using System;
|
||||
using Xunit;
|
||||
|
||||
namespace SKIT.FlurlHttpClient.Wechat.TenpayBusiness.UnitTests
|
||||
{
|
||||
public class TestCase_SM3UtilityTests
|
||||
public class TestCase_ToolsSM3UtilityTests
|
||||
{
|
||||
[Fact(DisplayName = "测试用例:计算 SM3 哈希值")]
|
||||
public void TestSM3Hash()
|
@ -1,8 +1,8 @@
|
||||
using Xunit;
|
||||
using Xunit;
|
||||
|
||||
namespace SKIT.FlurlHttpClient.Wechat.TenpayBusiness.UnitTests
|
||||
{
|
||||
public class TestCase_SM4UtilityTests
|
||||
public class TestCase_ToolsSM4UtilityTests
|
||||
{
|
||||
[Fact(DisplayName = "测试用例:SM4 加密")]
|
||||
public void TestSM4Encrypt()
|
@ -1,10 +1,10 @@
|
||||
using System;
|
||||
using System;
|
||||
using System.Text;
|
||||
using Xunit;
|
||||
|
||||
namespace SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests
|
||||
{
|
||||
public class TestCase_AESUtilityTests
|
||||
public class TestCase_ToolsAESUtilityTests
|
||||
{
|
||||
[Fact(DisplayName = "测试用例:AES-ECB 解密")]
|
||||
public void TestAESGCMDecrypt()
|
@ -3,7 +3,7 @@ using Xunit;
|
||||
|
||||
namespace SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests
|
||||
{
|
||||
public class TestCase_XmlUtilityTests
|
||||
public class TestCase_ToolsXmlUtilityTests
|
||||
{
|
||||
[Fact(DisplayName = "测试用例:XML2JSON")]
|
||||
public void TestXmlConvertToJson()
|
@ -2,7 +2,7 @@ using Xunit;
|
||||
|
||||
namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests
|
||||
{
|
||||
public class TestCase_AESUtilityTests
|
||||
public class TestCase_ToolsAESUtilityTests
|
||||
{
|
||||
[Fact(DisplayName = "测试用例:AES-GCM 解密")]
|
||||
public void TestAESGCMDecrypt()
|
@ -1,8 +1,8 @@
|
||||
using Xunit;
|
||||
using Xunit;
|
||||
|
||||
namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests
|
||||
{
|
||||
public class TestCase_HashUtilityTests
|
||||
public class TestCase_ToolsHashUtilityTests
|
||||
{
|
||||
[Fact(DisplayName = "测试用例:SHA-256 信息摘要")]
|
||||
public void TestSHA256Hash()
|
@ -3,7 +3,7 @@ using Xunit;
|
||||
|
||||
namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests
|
||||
{
|
||||
public class TestCase_RSAUtilityTests
|
||||
public class TestCase_ToolsRSAUtilityTests
|
||||
{
|
||||
// 此处测试的 RSA 证书/公钥/私钥是自签名生成的,仅供执行 RSA 相关的单元测试,不能用于调用微信支付 API。
|
||||
private const string RSA_CERT_SN = "3050f72e2dce03e7efe49557dd231d176649afbd";
|
@ -4,7 +4,7 @@ using Xunit;
|
||||
|
||||
namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests
|
||||
{
|
||||
public class TestCase_SM2UtilityTests
|
||||
public class TestCase_ToolsSM2UtilityTests
|
||||
{
|
||||
// 此处测试的 SM2 证书/公钥/私钥是自签名生成的,仅供执行 SM2 相关的单元测试,不能用于调用微信支付 API。
|
||||
private const string SM2_CERT_SN = "e5a81b02429d8d08";
|
@ -3,7 +3,7 @@ using Xunit;
|
||||
|
||||
namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests
|
||||
{
|
||||
public class TestCase_SM3UtilityTests
|
||||
public class TestCase_ToolsSM3UtilityTests
|
||||
{
|
||||
[Fact(DisplayName = "测试用例:计算 SM3 哈希值")]
|
||||
public void TestSM3Hash()
|
@ -3,7 +3,7 @@ using Xunit;
|
||||
|
||||
namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests
|
||||
{
|
||||
public class TestCase_SM4UtilityTests
|
||||
public class TestCase_ToolsSM4UtilityTests
|
||||
{
|
||||
[Fact(DisplayName = "测试用例:SM4-GCM 解密")]
|
||||
public void TestSM4GCMDecrypt()
|
Loading…
Reference in New Issue
Block a user