Skip to content

Commit

Permalink
Merge pull request #9 from dodobrands/fido-metadata-rootca-tolerant-p…
Browse files Browse the repository at this point in the history
…arse

Fido metadata rootca tolerant parse
  • Loading branch information
vanbukin committed Mar 11, 2024
2 parents c8e1a43 + 1cc6f4e commit 5bf00b4
Show file tree
Hide file tree
Showing 11 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Setup .NET SDK 8.0
uses: actions/setup-dotnet@v4.0.0
with:
dotnet-version: 8.0.200
dotnet-version: 8.0.201
source-url: ${{ secrets.NUGET_SOURCE }}
env:
NUGET_AUTH_TOKEN: ${{ secrets.PACKAGES_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Setup .NET SDK 8.0
uses: actions/setup-dotnet@v4.0.0
with:
dotnet-version: 8.0.200
dotnet-version: 8.0.201
source-url: ${{ secrets.NUGET_SOURCE }}
env:
NUGET_AUTH_TOKEN: ${{ secrets.PACKAGES_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ The documentation for each project is described in its README.md file.
### Required dependencies

- [.NET SDK 6.0.419+](https://dotnet.microsoft.com/en-us/download/dotnet/6.0)
- [.NET SDK 8.0.200+](https://dotnet.microsoft.com/en-us/download/dotnet/8.0)
- [.NET SDK 8.0.201+](https://dotnet.microsoft.com/en-us/download/dotnet/8.0)

## Tips for Contribution

Expand Down
2 changes: 1 addition & 1 deletion demo/WebAuthn.Net.Demo.FidoConformance/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ This project contains a demo application designed for passing the [FIDO conforma

These steps need to be performed only if you have not done them before.

1. Install .NET SDK versions [6.0.419+](https://dotnet.microsoft.com/en-us/download/dotnet/6.0) and [8.0.200+](https://dotnet.microsoft.com/en-us/download/dotnet/8.0).
1. Install .NET SDK versions [6.0.419+](https://dotnet.microsoft.com/en-us/download/dotnet/6.0) and [8.0.201+](https://dotnet.microsoft.com/en-us/download/dotnet/8.0).
2. [Trust the ASP.NET Core HTTPS development certificate](https://learn.microsoft.com/en-us/aspnet/core/security/enforcing-ssl?view=aspnetcore-8.0&tabs=visual-studio%2Clinux-ubuntu#trust-the-aspnet-core-https-development-certificate-on-windows-and-macos)

### Starting the FIDO Conformance test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Polly" Version="8.3.0" />
<PackageReference Include="Polly" Version="8.3.1" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "8.0.200",
"version": "8.0.201",
"rollForward": "latestFeature",
"allowPrerelease": false
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net6.0' ">
<PackageReference Include="Dapper" Version="2.1.28" />
<PackageReference Include="Dapper" Version="2.1.35" />
<PackageReference Include="MySqlConnector" Version="2.2.7" />
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net8.0' ">
<PackageReference Include="Dapper" Version="2.1.28" />
<PackageReference Include="Dapper" Version="2.1.35" />
<PackageReference Include="MySqlConnector" Version="2.3.5" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net6.0' ">
<PackageReference Include="Dapper" Version="2.1.28" />
<PackageReference Include="Dapper" Version="2.1.35" />
<PackageReference Include="Npgsql" Version="7.0.6" />
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net8.0' ">
<PackageReference Include="Dapper" Version="2.1.28" />
<PackageReference Include="Dapper" Version="2.1.35" />
<PackageReference Include="Npgsql" Version="8.0.2" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Dapper" Version="2.1.28" />
<PackageReference Include="Microsoft.Data.SqlClient" Version="5.1.5" />
<PackageReference Include="Dapper" Version="2.1.35" />
<PackageReference Include="Microsoft.Data.SqlClient" Version="5.2.0" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -713,7 +713,7 @@ private static bool TryDecodeAttestationRootCertificates(string[] attestationRoo
result = new byte[attestationRootCertificates.Length][];
for (var i = 0; i < attestationRootCertificates.Length; i++)
{
if (!Base64Raw.TryDecode(attestationRootCertificates[i], out var attestationRootCertificate))
if (!Base64Raw.TryDecode(attestationRootCertificates[i].Trim(), out var attestationRootCertificate))
{
result = null;
return false;
Expand Down
4 changes: 2 additions & 2 deletions tests/WebAuthn.Net.Tests.Unit/WebAuthn.Net.Tests.Unit.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
<PackageReference Include="NUnit" Version="4.0.1" />
<PackageReference Include="NUnit" Version="4.1.0" />
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0" />
<PackageReference Include="NUnit.Analyzers" Version="4.0.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="coverlet.collector" Version="6.0.0">
<PackageReference Include="coverlet.collector" Version="6.0.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down

0 comments on commit 5bf00b4

Please sign in to comment.