10 writes to Alg
Microsoft.AspNetCore.Identity (10)
IdentityJsonSerializerContext.PublicKeyCredentialParameters.g.cs (1)
32
ObjectWithParameterizedConstructorCreator = static args => new global::Microsoft.AspNetCore.Identity.PublicKeyCredentialParameters(){ Type = (string)args[0],
Alg
= (global::Microsoft.AspNetCore.Identity.COSEAlgorithmIdentifier)args[1] },
Passkeys\CredentialPublicKey.cs (9)
28
new() { Type = "public-key",
Alg
= COSEAlgorithmIdentifier.ES256 },
29
new() { Type = "public-key",
Alg
= COSEAlgorithmIdentifier.PS256 },
30
new() { Type = "public-key",
Alg
= COSEAlgorithmIdentifier.ES384 },
31
new() { Type = "public-key",
Alg
= COSEAlgorithmIdentifier.PS384 },
32
new() { Type = "public-key",
Alg
= COSEAlgorithmIdentifier.PS512 },
33
new() { Type = "public-key",
Alg
= COSEAlgorithmIdentifier.RS256 },
34
new() { Type = "public-key",
Alg
= COSEAlgorithmIdentifier.ES512 },
35
new() { Type = "public-key",
Alg
= COSEAlgorithmIdentifier.RS384 },
36
new() { Type = "public-key",
Alg
= COSEAlgorithmIdentifier.RS512 },
3 references to Alg
Microsoft.AspNetCore.Identity (3)
IdentityJsonSerializerContext.PublicKeyCredentialParameters.g.cs (2)
81
Getter = static obj => ((global::Microsoft.AspNetCore.Identity.PublicKeyCredentialParameters)obj).
Alg
,
110
global::System.Text.Json.JsonSerializer.Serialize(writer, ((global::Microsoft.AspNetCore.Identity.PublicKeyCredentialParameters)value).
Alg
, COSEAlgorithmIdentifier);
PasskeyHandler.cs (1)
47
? [.. CredentialPublicKey.AllSupportedParameters.Where(p => isAllowedAlgorithm((int)p.
Alg
))]