2 writes to IsAllowedAlgorithm
Microsoft.AspNetCore.Identity.Test (2)
Passkeys\PasskeyHandlerAttestationTest.cs (2)
877test.PasskeyOptions.IsAllowedAlgorithm = alg => alg == algorithm; 900test.PasskeyOptions.IsAllowedAlgorithm = alg => alg != algorithm;
3 references to IsAllowedAlgorithm
Microsoft.AspNetCore.Identity (2)
PasskeyHandler.cs (2)
46var pubKeyCredParams = _options.IsAllowedAlgorithm is { } isAllowedAlgorithm 301if (_options.IsAllowedAlgorithm is { } isAllowedAlgorithm && !isAllowedAlgorithm((int)algorithm))
Microsoft.AspNetCore.Identity.Test (1)
IdentityPasskeyOptionsTest.cs (1)
20Assert.Null(options.IsAllowedAlgorithm);