@@ -256,7 +256,6 @@ public void TestAuthenticatorAttestationRawResponse()
256
256
Extensions = new AuthenticationExtensionsClientOutputs
257
257
{
258
258
AppID = true ,
259
- AuthenticatorSelection = true ,
260
259
Extensions = new string [ ] { "foo" , "bar" } ,
261
260
Example = "test" ,
262
261
UserVerificationMethod = new ulong [ ] [ ]
@@ -283,7 +282,6 @@ public void TestAuthenticatorAttestationRawResponse()
283
282
Assert . Equal ( new byte [ ] { 0xa0 } , rawResponse . Response . AttestationObject ) ;
284
283
Assert . Equal ( clientDataJson , rawResponse . Response . ClientDataJson ) ;
285
284
Assert . True ( rawResponse . Extensions . AppID ) ;
286
- Assert . True ( rawResponse . Extensions . AuthenticatorSelection ) ;
287
285
Assert . Equal ( new string [ ] { "foo" , "bar" } , rawResponse . Extensions . Extensions ) ;
288
286
Assert . Equal ( "test" , rawResponse . Extensions . Example ) ;
289
287
Assert . Equal ( ( ulong ) 4 , rawResponse . Extensions . UserVerificationMethod [ 0 ] [ 0 ] ) ;
@@ -1239,7 +1237,6 @@ public void TestAuthenticatorAssertionRawResponse()
1239
1237
Extensions = new AuthenticationExtensionsClientOutputs
1240
1238
{
1241
1239
AppID = true ,
1242
- AuthenticatorSelection = true ,
1243
1240
Extensions = new string [ ] { "foo" , "bar" } ,
1244
1241
Example = "test" ,
1245
1242
UserVerificationMethod = new ulong [ ] [ ]
@@ -1268,7 +1265,6 @@ public void TestAuthenticatorAssertionRawResponse()
1268
1265
Assert . Equal ( clientDataJson , assertionResponse . Response . ClientDataJson ) ;
1269
1266
Assert . Equal ( new byte [ ] { 0xf1 , 0xd0 } , assertionResponse . Response . UserHandle ) ;
1270
1267
Assert . True ( assertionResponse . Extensions . AppID ) ;
1271
- Assert . True ( assertionResponse . Extensions . AuthenticatorSelection ) ;
1272
1268
Assert . Equal ( new string [ ] { "foo" , "bar" } , assertionResponse . Extensions . Extensions ) ;
1273
1269
Assert . Equal ( "test" , assertionResponse . Extensions . Example ) ;
1274
1270
Assert . Equal ( ( ulong ) 4 , assertionResponse . Extensions . UserVerificationMethod [ 0 ] [ 0 ] ) ;
@@ -1317,7 +1313,6 @@ public void TestAuthenticatorAssertionTypeNotPublicKey()
1317
1313
Extensions = new AuthenticationExtensionsClientOutputs
1318
1314
{
1319
1315
AppID = false ,
1320
- AuthenticatorSelection = true ,
1321
1316
Extensions = new string [ ] { "foo" , "bar" } ,
1322
1317
Example = "test" ,
1323
1318
UserVerificationMethod = new ulong [ ] [ ]
@@ -1386,7 +1381,6 @@ public void TestAuthenticatorAssertionIdMissing()
1386
1381
Extensions = new AuthenticationExtensionsClientOutputs
1387
1382
{
1388
1383
AppID = false ,
1389
- AuthenticatorSelection = true ,
1390
1384
Extensions = new string [ ] { "foo" , "bar" } ,
1391
1385
Example = "test" ,
1392
1386
UserVerificationMethod = new ulong [ ] [ ]
@@ -1456,7 +1450,6 @@ public void TestAuthenticatorAssertionRawIdMissing()
1456
1450
Extensions = new AuthenticationExtensionsClientOutputs ( )
1457
1451
{
1458
1452
AppID = false ,
1459
- AuthenticatorSelection = true ,
1460
1453
Extensions = new string [ ] { "foo" , "bar" } ,
1461
1454
Example = "test" ,
1462
1455
UserVerificationMethod = new ulong [ ] [ ]
@@ -1526,7 +1519,6 @@ public void TestAuthenticatorAssertionUserHandleEmpty()
1526
1519
Extensions = new AuthenticationExtensionsClientOutputs ( )
1527
1520
{
1528
1521
AppID = false ,
1529
- AuthenticatorSelection = true ,
1530
1522
Extensions = new string [ ] { "foo" , "bar" } ,
1531
1523
Example = "test" ,
1532
1524
UserVerificationMethod = new ulong [ ] [ ]
@@ -1596,7 +1588,6 @@ public void TestAuthenticatorAssertionUserHandleNotOwnerOfPublicKey()
1596
1588
Extensions = new AuthenticationExtensionsClientOutputs ( )
1597
1589
{
1598
1590
AppID = false ,
1599
- AuthenticatorSelection = true ,
1600
1591
Extensions = new string [ ] { "foo" , "bar" } ,
1601
1592
Example = "test" ,
1602
1593
UserVerificationMethod = new ulong [ ] [ ]
@@ -1666,7 +1657,6 @@ public void TestAuthenticatorAssertionTypeNotWebAuthnGet()
1666
1657
Extensions = new AuthenticationExtensionsClientOutputs
1667
1658
{
1668
1659
AppID = false ,
1669
- AuthenticatorSelection = true ,
1670
1660
Extensions = new string [ ] { "foo" , "bar" } ,
1671
1661
Example = "test" ,
1672
1662
UserVerificationMethod = new ulong [ ] [ ]
@@ -1738,7 +1728,6 @@ public void TestAuthenticatorAssertionAppId()
1738
1728
Extensions = new AuthenticationExtensionsClientOutputs ( )
1739
1729
{
1740
1730
AppID = true ,
1741
- AuthenticatorSelection = true ,
1742
1731
Extensions = new string [ ] { "foo" , "bar" } ,
1743
1732
Example = "test" ,
1744
1733
UserVerificationMethod = new ulong [ ] [ ]
@@ -1809,7 +1798,6 @@ public void TestAuthenticatorAssertionInvalidRpIdHash()
1809
1798
Extensions = new AuthenticationExtensionsClientOutputs ( )
1810
1799
{
1811
1800
AppID = false ,
1812
- AuthenticatorSelection = true ,
1813
1801
Extensions = new string [ ] { "foo" , "bar" } ,
1814
1802
Example = "test" ,
1815
1803
UserVerificationMethod = new ulong [ ] [ ]
@@ -1881,7 +1869,6 @@ public void TestAuthenticatorAssertionUPRequirementNotMet()
1881
1869
Extensions = new AuthenticationExtensionsClientOutputs
1882
1870
{
1883
1871
AppID = false ,
1884
- AuthenticatorSelection = true ,
1885
1872
Extensions = new string [ ] { "foo" , "bar" } ,
1886
1873
Example = "test" ,
1887
1874
UserVerificationMethod = new ulong [ ] [ ]
@@ -1952,7 +1939,6 @@ public void TestAuthenticatorAssertionUVPolicyNotMet()
1952
1939
Extensions = new AuthenticationExtensionsClientOutputs
1953
1940
{
1954
1941
AppID = false ,
1955
- AuthenticatorSelection = true ,
1956
1942
Extensions = new string [ ] { "foo" , "bar" } ,
1957
1943
Example = "test" ,
1958
1944
UserVerificationMethod = new ulong [ ] [ ]
@@ -2021,7 +2007,6 @@ public void TestAuthenticatorAssertionBEPolicyRequired()
2021
2007
Extensions = new AuthenticationExtensionsClientOutputs ( )
2022
2008
{
2023
2009
AppID = false ,
2024
- AuthenticatorSelection = true ,
2025
2010
Extensions = new string [ ] { "foo" , "bar" } ,
2026
2011
Example = "test" ,
2027
2012
UserVerificationMethod = new ulong [ ] [ ]
@@ -2091,7 +2076,6 @@ public void TestAuthenticatorAssertionBEPolicyDisallow()
2091
2076
Extensions = new AuthenticationExtensionsClientOutputs
2092
2077
{
2093
2078
AppID = false ,
2094
- AuthenticatorSelection = true ,
2095
2079
Extensions = new string [ ] { "foo" , "bar" } ,
2096
2080
Example = "test" ,
2097
2081
UserVerificationMethod = new ulong [ ] [ ]
@@ -2161,7 +2145,6 @@ public void TestAuthenticatorAssertionBSPolicyRequired()
2161
2145
Extensions = new AuthenticationExtensionsClientOutputs
2162
2146
{
2163
2147
AppID = false ,
2164
- AuthenticatorSelection = true ,
2165
2148
Extensions = new string [ ] { "foo" , "bar" } ,
2166
2149
Example = "test" ,
2167
2150
UserVerificationMethod = new ulong [ ] [ ]
@@ -2231,7 +2214,6 @@ public void TestAuthenticatorAssertionBSPolicyDisallow()
2231
2214
Extensions = new AuthenticationExtensionsClientOutputs
2232
2215
{
2233
2216
AppID = false ,
2234
- AuthenticatorSelection = true ,
2235
2217
Extensions = new string [ ] { "foo" , "bar" } ,
2236
2218
Example = "test" ,
2237
2219
UserVerificationMethod = new ulong [ ] [ ]
@@ -2302,7 +2284,6 @@ public void TestAuthenticatorAssertionStoredPublicKeyMissing()
2302
2284
Extensions = new AuthenticationExtensionsClientOutputs ( )
2303
2285
{
2304
2286
AppID = false ,
2305
- AuthenticatorSelection = true ,
2306
2287
Extensions = new string [ ] { "foo" , "bar" } ,
2307
2288
Example = "test" ,
2308
2289
UserVerificationMethod = new ulong [ ] [ ]
@@ -2372,7 +2353,6 @@ public void TestAuthenticatorAssertionInvalidSignature()
2372
2353
Extensions = new AuthenticationExtensionsClientOutputs ( )
2373
2354
{
2374
2355
AppID = false ,
2375
- AuthenticatorSelection = true ,
2376
2356
Extensions = new string [ ] { "foo" , "bar" } ,
2377
2357
Example = "test" ,
2378
2358
UserVerificationMethod = new ulong [ ] [ ]
@@ -2449,7 +2429,6 @@ public void TestAuthenticatorAssertionSignCountSignature()
2449
2429
Extensions = new AuthenticationExtensionsClientOutputs ( )
2450
2430
{
2451
2431
AppID = false ,
2452
- AuthenticatorSelection = true ,
2453
2432
Extensions = new string [ ] { "foo" , "bar" } ,
2454
2433
Example = "test" ,
2455
2434
UserVerificationMethod = new ulong [ ] [ ]
0 commit comments