From 22b164a55fa7779a7368c2bc40a3506760f889ac Mon Sep 17 00:00:00 2001 From: KristofferStrube Date: Sun, 24 Sep 2023 16:35:27 +0200 Subject: [PATCH] Added more options for algorithms in demo. --- .../Pages/Index.razor.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/samples/KristofferStrube.Blazor.WebAuthentication.WasmExample/Pages/Index.razor.cs b/samples/KristofferStrube.Blazor.WebAuthentication.WasmExample/Pages/Index.razor.cs index e2456f1..4080c67 100644 --- a/samples/KristofferStrube.Blazor.WebAuthentication.WasmExample/Pages/Index.razor.cs +++ b/samples/KristofferStrube.Blazor.WebAuthentication.WasmExample/Pages/Index.razor.cs @@ -46,6 +46,11 @@ private async Task CreateCredential() { Type = PublicKeyCredentialType.PublicKey, Alg = -257 + }, + new PublicKeyCredentialParameters() + { + Type = PublicKeyCredentialType.PublicKey, + Alg = -7 } ], Timeout = 360000,