1 write to _options
Microsoft.AspNetCore.Identity (1)
PasskeyHandler.cs (1)
34
_options
= options.Value;
15 references to _options
Microsoft.AspNetCore.Identity (15)
PasskeyHandler.cs (15)
45
var challenge = RandomNumberGenerator.GetBytes(
_options
.ChallengeSize);
46
var pubKeyCredParams =
_options
.IsAllowedAlgorithm is { } isAllowedAlgorithm
63
Timeout = (uint)
_options
.AuthenticatorTimeout.TotalMilliseconds,
68
AuthenticatorAttachment =
_options
.AuthenticatorAttachment,
69
ResidentKey =
_options
.ResidentKeyRequirement,
70
UserVerification =
_options
.UserVerificationRequirement,
72
Attestation =
_options
.AttestationConveyancePreference,
116
var challenge = RandomNumberGenerator.GetBytes(
_options
.ChallengeSize);
121
Timeout = (uint)
_options
.AuthenticatorTimeout.TotalMilliseconds,
123
UserVerification =
_options
.UserVerificationRequirement,
301
if (
_options
.IsAllowedAlgorithm is { } isAllowedAlgorithm && !isAllowedAlgorithm((int)algorithm))
310
if (
_options
.VerifyAttestationStatement is { } verifyAttestationStatement)
638
var originalUserVerificationRequirement =
_options
.UserVerificationRequirement;
653
if (
_options
.ValidateOrigin is { } validateOrigin)
678
=>
_options
.ServerDomain ?? httpContext.Request.Host.Host;