Skip to content

Commit 32f25f2

Browse files
committed
test : fix pin
1 parent 7760158 commit 32f25f2

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
- dotnet sdk 9.0.306
44
- android 35.0.105
55
- ios 26.0.9752
6+
- test : fix pin
67
- test : Microsoft.Extensions.DependencyInjection 9.0.10
78
- test : Microsoft.Extensions.Logging 9.0.10
89
- test : Microsoft.Maui.* 9.0.111

SecureHttpClient.Test/CertificatePinnerTest.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ public class CertificatePinnerTest : TestBase, IClassFixture<TestFixture>
88
{
99
private const string Hostname = @"www.howsmyssl.com";
1010
private const string Page = @"https://www.howsmyssl.com/a/check";
11-
private static readonly string[] PinsOk = { @"sha256/bqBWe20CwEsdAX5HWKSzlButAuHPLD5ezsGrTlP+PNE=" };
11+
private static readonly string[] PinsOk = { @"sha256/kXo1ykvfYulcwtgnY1/sOcAF+b8pHUNGzYsXaNADPpE=" };
1212
private static readonly string[] PinsKo = { @"sha256/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=" };
1313

1414
private const string Hostname2 = @"github.com";
@@ -18,7 +18,7 @@ public class CertificatePinnerTest : TestBase, IClassFixture<TestFixture>
1818

1919
private const string Hostname3 = @"ecc256.badssl.com";
2020
private const string Page3 = @"https://ecc256.badssl.com/";
21-
private static readonly string[] Pins3Ok = { @"sha256/ohV8JZQpc4OW0JpLAA7A+X4/EY4jFw7oWq2e02WMuag=" };
21+
private static readonly string[] Pins3Ok = { @"sha256/g67mY/cD6RvINsd1RSeQf9Ns4PIpUKUd+pw8XpUOf9E=" };
2222
private static readonly string[] Pins3Ko = { @"sha256/zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz=" };
2323

2424
public CertificatePinnerTest(TestFixture testFixture) : base(testFixture)

0 commit comments

Comments
 (0)