-
-
Notifications
You must be signed in to change notification settings - Fork 182
/
Copy pathFido2Tests.cs
1163 lines (1018 loc) · 56.5 KB
/
Fido2Tests.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
using System;
using System.Buffers.Binary;
using System.Collections.Generic;
using System.Formats.Asn1;
using System.IO;
using System.Linq;
using System.Net.Http;
using System.Security.Cryptography;
using System.Security.Cryptography.X509Certificates;
using System.Text;
using System.Text.Json;
using System.Threading;
using System.Threading.Tasks;
using Fido2NetLib;
using Fido2NetLib.Cbor;
using Fido2NetLib.Objects;
using Microsoft.Extensions.Caching.Distributed;
using Microsoft.Extensions.Caching.Memory;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Internal;
using Microsoft.Extensions.Logging;
using Moq;
using NSec.Cryptography;
using Xunit;
namespace fido2_net_lib.Test
{
// todo: Create tests and name Facts and json files better.
public class Fido2Tests
{
private static readonly IMetadataService _metadataService;
private static readonly Fido2Configuration _config;
public static readonly List<(COSE.KeyType, COSE.Algorithm, COSE.EllipticCurve)> _validCOSEParameters;
static Fido2Tests()
{
var services = new ServiceCollection();
services.AddDistributedMemoryCache();
services.AddMemoryCache();
services.AddLogging();
services.AddHttpClient();
var provider = services.BuildServiceProvider();
var distributedCache = provider.GetService<IDistributedCache>();
var memCache = provider.GetService<IMemoryCache>();
var repos = new List<IMetadataRepository>
{
new Fido2MetadataServiceRepository(provider.GetService<IHttpClientFactory>())
};
IMetadataService service = new DistributedCacheMetadataService(
repos,
distributedCache,
memCache,
provider.GetService<ILogger<DistributedCacheMetadataService>>(),
new SystemClock());
_metadataService = service;
_config = new Fido2Configuration { Origins = new HashSet<string> { "https://localhost:44329" } };
var noCurve = COSE.EllipticCurve.Reserved;
_validCOSEParameters = new ()
{
new (COSE.KeyType.EC2, COSE.Algorithm.ES256, COSE.EllipticCurve.P256),
new (COSE.KeyType.EC2, COSE.Algorithm.ES384, COSE.EllipticCurve.P384),
new (COSE.KeyType.EC2, COSE.Algorithm.ES512, COSE.EllipticCurve.P521),
new (COSE.KeyType.RSA, COSE.Algorithm.RS256, noCurve),
new (COSE.KeyType.RSA, COSE.Algorithm.RS384, noCurve),
new (COSE.KeyType.RSA, COSE.Algorithm.RS512, noCurve),
new (COSE.KeyType.RSA, COSE.Algorithm.PS256, noCurve),
new (COSE.KeyType.RSA, COSE.Algorithm.PS384, noCurve),
new (COSE.KeyType.RSA, COSE.Algorithm.PS512, noCurve),
new (COSE.KeyType.OKP, COSE.Algorithm.EdDSA, COSE.EllipticCurve.Ed25519),
new (COSE.KeyType.EC2, COSE.Algorithm.ES256K, COSE.EllipticCurve.P256K)
};
}
private async Task<T> GetAsync<T>(string filename)
{
return JsonSerializer.Deserialize<T>(await File.ReadAllTextAsync(filename));
}
public abstract class Attestation
{
public CborMap _attestationObject;
public CredentialPublicKey _credentialPublicKey;
public const string rp = "https://www.passwordless.dev";
public byte[] _challenge;
public X500DistinguishedName rootDN = new X500DistinguishedName("CN=Testing, O=FIDO2-NET-LIB, C=US");
public Oid oidIdFidoGenCeAaguid = new Oid("1.3.6.1.4.1.45724.1.1.4");
//private byte[] asnEncodedAaguid = new byte[] { 0x04, 0x10, 0xd0, 0xf1, 0xd0, 0xf1, 0xd0, 0xf1, 0xd0, 0xf1, 0xf1, 0xd0, 0xf1, 0xd0, 0xf1, 0xd0, 0xf1, 0xd0, };
//public byte[] asnEncodedAaguid = new byte[] { 0x04, 0x10, 0xf1, 0xd0, 0xf1, 0xd0, 0xf1, 0xd0, 0xf1, 0xd0, 0xf1, 0xd0, 0xf1, 0xd0, 0xf1, 0xd0, 0xf1, 0xd0, };
public byte[] _asnEncodedAaguid;
public X509BasicConstraintsExtension caExt = new X509BasicConstraintsExtension(true, true, 2, false);
public X509BasicConstraintsExtension notCAExt = new X509BasicConstraintsExtension(false, false, 0, false);
public X509Extension idFidoGenCeAaguidExt;
public byte[] _rpIdHash
{
get
{
byte[] rpId = Encoding.UTF8.GetBytes(rp);
return SHA256.HashData(rpId);
}
}
public byte[] _clientDataJson
{
get
{
return JsonSerializer.SerializeToUtf8Bytes(new
{
type = "webauthn.create",
challenge = _challenge,
origin = rp
});
}
}
public byte[] _clientDataHash => SHA256.HashData(_clientDataJson);
public byte[] _attToBeSigned => DataHelper.Concat(_authData, _clientDataHash);
public byte[] _attToBeSignedHash(HashAlgorithmName alg)
{
return CryptoUtils.HashData(alg, _attToBeSigned);
}
public byte[] _credentialID;
public const AuthenticatorFlags _flags = AuthenticatorFlags.AT | AuthenticatorFlags.ED | AuthenticatorFlags.UP | AuthenticatorFlags.UV;
public ushort _signCount;
public Guid _aaguid = new Guid("F1D0F1D0-F1D0-F1D0-F1D0-F1D0F1D0F1D0");
public Extensions _exts
{
get
{
var extBytes = new CborMap { { "testing", true } }.Encode();
return new Extensions(extBytes);
}
}
public byte[] _authData
{
get
{
var ad = new AuthenticatorData(_rpIdHash, _flags, _signCount, _acd, _exts);
return ad.ToByteArray();
}
}
public AttestedCredentialData _acd
{
get
{
return new AttestedCredentialData(_aaguid, _credentialID, _credentialPublicKey);
}
}
public Attestation()
{
_credentialID = new byte[16];
RandomNumberGenerator.Fill(_credentialID);
_challenge = new byte[128];
RandomNumberGenerator.Fill(_credentialID);
var signCount = new byte[2];
RandomNumberGenerator.Fill(signCount);
_signCount = BitConverter.ToUInt16(signCount, 0);
_attestationObject = new CborMap();
_asnEncodedAaguid = AsnHelper.GetBlob(AttestedCredentialData.AaGuidToBigEndian(_aaguid));
idFidoGenCeAaguidExt = new X509Extension(oidIdFidoGenCeAaguid, _asnEncodedAaguid, false);
}
public async Task<Fido2.CredentialMakeResult> MakeAttestationResponse()
{
_attestationObject.Set("authData", new CborByteString(_authData));
var attestationResponse = new AuthenticatorAttestationRawResponse
{
Type = PublicKeyCredentialType.PublicKey,
Id = new byte[] { 0xf1, 0xd0 },
RawId = new byte[] { 0xf1, 0xd0 },
Response = new AuthenticatorAttestationRawResponse.ResponseData()
{
AttestationObject = _attestationObject.Encode(),
ClientDataJson = _clientDataJson,
},
Extensions = new AuthenticationExtensionsClientOutputs()
{
AppID = true,
AuthenticatorSelection = true,
Extensions = new string[] { "foo", "bar" },
Example = "test",
UserVerificationMethod = new ulong[][]
{
new ulong[]
{
4 // USER_VERIFY_PASSCODE_INTERNAL
},
},
}
};
var origChallenge = new CredentialCreateOptions
{
Attestation = AttestationConveyancePreference.Direct,
AuthenticatorSelection = new AuthenticatorSelection
{
AuthenticatorAttachment = AuthenticatorAttachment.CrossPlatform,
RequireResidentKey = true,
UserVerification = UserVerificationRequirement.Discouraged,
},
Challenge = _challenge,
ErrorMessage = "",
PubKeyCredParams = new List<PubKeyCredParam>()
{
new PubKeyCredParam(COSE.Algorithm.ES256)
},
Rp = new PublicKeyCredentialRpEntity(rp, rp, ""),
Status = "ok",
User = new Fido2User
{
Name = "testuser",
Id = Encoding.UTF8.GetBytes("testuser"),
DisplayName = "Test User",
},
Timeout = 60000,
};
IsCredentialIdUniqueToUserAsyncDelegate callback = (args, cancellationToken) =>
{
return Task.FromResult(true);
};
IFido2 lib = new Fido2(new Fido2Configuration()
{
ServerDomain = rp,
ServerName = rp,
Origins = new HashSet<string> { rp },
});
var credentialMakeResult = await lib.MakeNewCredentialAsync(attestationResponse, origChallenge, callback);
return credentialMakeResult;
}
internal byte[] SignData(COSE.KeyType kty, COSE.Algorithm alg, COSE.EllipticCurve crv)
{
ECDsa ecdsa = null;
RSA rsa = null;
Key privateKey = null;
byte[] expandedPrivateKey, publicKey = null;
switch (kty)
{
case COSE.KeyType.EC2:
{
ecdsa = MakeECDsa(alg, crv);
break;
}
case COSE.KeyType.RSA:
{
rsa = RSA.Create();
break;
}
case COSE.KeyType.OKP:
{
MakeEdDSA(out var privateKeySeed, out publicKey, out expandedPrivateKey);
privateKey = Key.Import(SignatureAlgorithm.Ed25519, expandedPrivateKey, KeyBlobFormat.RawPrivateKey);
break;
}
default:
throw new ArgumentOutOfRangeException(nameof(kty), $"Missing or unknown kty {kty}");
}
return SignData(kty, alg, crv, ecdsa, rsa, privateKey, publicKey);
}
internal byte[] SignData(COSE.KeyType kty, COSE.Algorithm alg, COSE.EllipticCurve curve, ECDsa ecdsa = null, RSA rsa = null, Key expandedPrivateKey = null, byte[] publicKey = null)
{
switch (kty)
{
case COSE.KeyType.EC2:
{
var ecparams = ecdsa.ExportParameters(true);
_credentialPublicKey = MakeCredentialPublicKey(kty, alg, curve, ecparams.Q.X, ecparams.Q.Y);
var signature = ecdsa.SignData(_attToBeSigned, CryptoUtils.HashAlgFromCOSEAlg(alg));
return EcDsaSigFromSig(signature, ecdsa.KeySize);
}
case COSE.KeyType.RSA:
{
RSASignaturePadding padding;
switch (alg) // https://www.iana.org/assignments/cose/cose.xhtml#algorithms
{
case COSE.Algorithm.PS256:
case COSE.Algorithm.PS384:
case COSE.Algorithm.PS512:
padding = RSASignaturePadding.Pss;
break;
case COSE.Algorithm.RS1:
case COSE.Algorithm.RS256:
case COSE.Algorithm.RS384:
case COSE.Algorithm.RS512:
padding = RSASignaturePadding.Pkcs1;
break;
default:
throw new ArgumentOutOfRangeException(nameof(alg), $"Missing or unknown alg {alg}");
}
var rsaparams = rsa.ExportParameters(true);
_credentialPublicKey = MakeCredentialPublicKey(kty, alg, rsaparams.Modulus, rsaparams.Exponent);
return rsa.SignData(_attToBeSigned, CryptoUtils.HashAlgFromCOSEAlg(alg), padding);
}
case COSE.KeyType.OKP:
{
_credentialPublicKey = MakeCredentialPublicKey(kty, alg, COSE.EllipticCurve.Ed25519, publicKey);
return SignatureAlgorithm.Ed25519.Sign(expandedPrivateKey, _attToBeSigned);
}
default:
throw new ArgumentOutOfRangeException(nameof(kty), $"Missing or unknown kty {kty}");
}
}
}
internal static byte[] SignData(COSE.KeyType kty, COSE.Algorithm alg, byte[] data, ECDsa ecdsa = null, RSA rsa = null, byte[] expandedPrivateKey = null)
{
switch (kty)
{
case COSE.KeyType.EC2:
{
var signature = ecdsa.SignData(data, CryptoUtils.HashAlgFromCOSEAlg(alg));
return EcDsaSigFromSig(signature, ecdsa.KeySize);
}
case COSE.KeyType.RSA:
{
RSASignaturePadding padding;
switch (alg) // https://www.iana.org/assignments/cose/cose.xhtml#algorithms
{
case COSE.Algorithm.PS256:
case COSE.Algorithm.PS384:
case COSE.Algorithm.PS512:
padding = RSASignaturePadding.Pss;
break;
case COSE.Algorithm.RS1:
case COSE.Algorithm.RS256:
case COSE.Algorithm.RS384:
case COSE.Algorithm.RS512:
padding = RSASignaturePadding.Pkcs1;
break;
default:
throw new ArgumentOutOfRangeException(nameof(alg), $"Missing or unknown alg {alg}");
}
return rsa.SignData(data, CryptoUtils.HashAlgFromCOSEAlg(alg), padding);
}
case COSE.KeyType.OKP:
{
Key privateKey = Key.Import(SignatureAlgorithm.Ed25519, expandedPrivateKey, KeyBlobFormat.RawPrivateKey);
return SignatureAlgorithm.Ed25519.Sign(privateKey, data);
}
default:
throw new ArgumentOutOfRangeException(nameof(kty), $"Missing or unknown kty {kty}");
}
}
[Fact]
public void TestStringIsSerializable()
{
var x2 = new AuthenticatorSelection();
x2.UserVerification = UserVerificationRequirement.Discouraged;
var json = JsonSerializer.Serialize(x2);
var c3 = JsonSerializer.Deserialize<AuthenticatorSelection>(json);
Assert.Equal(UserVerificationRequirement.Discouraged, c3.UserVerification);
Assert.NotEqual(UserVerificationRequirement.Required, c3.UserVerification);
// Assert.True("discouraged" == UserVerificationRequirement.Discouraged);
// Assert.False("discouraged" != UserVerificationRequirement.Discouraged);
Assert.False(UserVerificationRequirement.Required == UserVerificationRequirement.Discouraged);
Assert.True(UserVerificationRequirement.Required != UserVerificationRequirement.Discouraged);
// testing where string and membername mismatch
var y1 = AuthenticatorAttachment.CrossPlatform;
var yjson = JsonSerializer.Serialize(y1);
Assert.Equal("\"cross-platform\"", yjson);
var y2 = JsonSerializer.Deserialize<AuthenticatorAttachment>(yjson);
Assert.Equal(AuthenticatorAttachment.CrossPlatform, y2);
// test list of typedstrings
var z1 = new[] {
AuthenticatorTransport.Ble,
AuthenticatorTransport.Usb,
AuthenticatorTransport.Nfc,
AuthenticatorTransport.Internal
};
var zjson = JsonSerializer.Serialize(z1);
var z2 = JsonSerializer.Deserialize<AuthenticatorTransport[]>(zjson);
Assert.All(z2, (x) => z1.Contains(x));
Assert.True(z1.SequenceEqual(z2));
}
[Fact]
public async Task TestFido2AssertionAsync()
{
//var existingKey = "45-43-53-31-20-00-00-00-0E-B4-F3-73-C2-AC-7D-F7-7E-7D-17-D3-A3-A2-CC-AB-E5-C6-B1-42-ED-10-AC-7C-15-72-39-8D-75-C6-5B-B9-76-09-33-A0-30-F2-44-51-C8-31-AF-72-9B-4F-7B-AB-4F-85-2D-7D-1F-E0-B5-BD-A3-3D-0E-D6-18-04-CD-98";
//var key2 = "45-43-53-31-20-00-00-00-1D-60-44-D7-92-A0-0C-1E-3B-F9-58-5A-28-43-92-FD-F6-4F-BB-7F-8E-86-33-38-30-A4-30-5D-4E-2C-71-E3-53-3C-7B-98-81-99-FE-A9-DA-D9-24-8E-04-BD-C7-86-40-D3-03-1E-6E-00-81-7D-85-C3-A2-19-C9-21-85-8D";
//var key2 = "45-43-53-31-20-00-00-00-A9-E9-12-2A-37-8A-F0-74-E7-BA-52-54-B0-91-55-46-DB-21-E5-2C-01-B8-FB-69-CD-E5-ED-02-B6-C3-16-E3-1A-59-16-C1-43-87-0D-04-B9-94-7F-CF-56-E5-AA-5E-96-8C-5B-27-8F-83-F4-E2-50-AB-B3-F6-28-A1-F8-9E";
var options = JsonSerializer.Deserialize<CredentialCreateOptions>(await File.ReadAllTextAsync("./attestationNoneOptions.json"));
var response = JsonSerializer.Deserialize<AuthenticatorAttestationRawResponse>(await File.ReadAllTextAsync("./attestationNoneResponse.json"));
var o = AuthenticatorAttestationResponse.Parse(response);
await o.VerifyAsync(options, _config, (x, cancellationToken) => Task.FromResult(true), _metadataService, null, CancellationToken.None);
var credId = "F1-3C-7F-08-3C-A2-29-E0-B4-03-E8-87-34-6E-FC-7F-98-53-10-3A-30-91-75-67-39-7A-D1-D8-AF-87-04-61-87-EF-95-31-85-60-F3-5A-1A-2A-CF-7D-B0-1D-06-B9-69-F9-AB-F4-EC-F3-07-3E-CF-0F-71-E8-84-E8-41-20";
var allowedCreds = new List<PublicKeyCredentialDescriptor>() {
new PublicKeyCredentialDescriptor()
{
Id = Convert.FromHexString(credId.Replace("-", "")),
Type = PublicKeyCredentialType.PublicKey
}
};
// assertion
var aoptions = await GetAsync<AssertionOptions>("./assertionNoneOptions.json");
var aresponse = await GetAsync<AuthenticatorAssertionRawResponse>("./assertionNoneResponse.json");
// signed assertion?
//fido2.MakeAssertion(aresponse, aoptions, response.);
}
[Fact]
public async Task TestParsingAsync()
{
var jsonPost = JsonSerializer.Deserialize<AuthenticatorAttestationRawResponse>(await File.ReadAllTextAsync("./json1.json"));
var options = JsonSerializer.Deserialize<CredentialCreateOptions>(await File.ReadAllTextAsync("./options1.json"));
Assert.NotNull(jsonPost);
var o = AuthenticatorAttestationResponse.Parse(jsonPost);
await o.VerifyAsync(options, _config, (x, cancellationToken) => Task.FromResult(true), _metadataService, null, CancellationToken.None);
}
[Fact]
public void MetadataBLOBPayloadEntry_Can_Be_JSON_Roundtripped()
{
var input = new MetadataBLOBPayloadEntry()
{
AaGuid = Guid.NewGuid().ToString(),
MetadataStatement = new MetadataStatement(),
StatusReports = Array.Empty<StatusReport>(),
TimeOfLastStatusChange = DateTime.UtcNow.ToString("o")
};
input.MetadataStatement.AaGuid = Guid.NewGuid().ToString();
input.MetadataStatement.Description = "Test entry";
input.MetadataStatement.AuthenticatorVersion = 1;
input.MetadataStatement.Upv = new UafVersion[] { new UafVersion
{
Major = 1,
Minor = 0,
}
};
input.MetadataStatement.ProtocolFamily = "foo";
input.MetadataStatement.AttestationTypes = new string[] { "bar" };
input.MetadataStatement.AuthenticationAlgorithms = new string[] { "alg0", "alg1" };
input.MetadataStatement.PublicKeyAlgAndEncodings = new string[] { "example0", "example1" };
input.MetadataStatement.TcDisplay = new string[] { "transaction","confirmation" };
input.MetadataStatement.KeyProtection = new string[] { "protector" };
input.MetadataStatement.MatcherProtection = new string[] { "stuff", "things" };
input.MetadataStatement.UserVerificationDetails = Array.Empty<VerificationMethodDescriptor[]>();
input.MetadataStatement.AttestationRootCertificates = new string[] { "..." };
var json = JsonSerializer.Serialize(input);
var output = JsonSerializer.Deserialize<MetadataBLOBPayloadEntry>(json);
Assert.Equal(input.AaGuid, output.AaGuid);
}
[Fact]
public void TestAuthenticatorDataPa2rsing()
{
var bs = new byte[] { 1, 2, 3 };
var x = new CborMap { { "bytes", bs } };
var s = (byte[])x["bytes"];
Assert.Equal(s, bs);
}
[Fact]
public async Task TestU2FAttestationAsync()
{
var jsonPost = JsonSerializer.Deserialize<AuthenticatorAttestationRawResponse>(await File.ReadAllTextAsync("./attestationResultsU2F.json"));
var options = JsonSerializer.Deserialize<CredentialCreateOptions>(await File.ReadAllTextAsync("./attestationOptionsU2F.json"));
var o = AuthenticatorAttestationResponse.Parse(jsonPost);
await o.VerifyAsync(options, _config, (x, cancellationToken) => Task.FromResult(true), _metadataService, null, CancellationToken.None);
byte[] ad = o.AttestationObject.AuthData;
// TODO : Why read ad ? Is the test finished ?
}
[Fact]
public async Task TestPackedAttestationAsync()
{
var jsonPost = JsonSerializer.Deserialize<AuthenticatorAttestationRawResponse>(await File.ReadAllTextAsync("./attestationResultsPacked.json"));
var options = JsonSerializer.Deserialize<CredentialCreateOptions>(await File.ReadAllTextAsync("./attestationOptionsPacked.json"));
var o = AuthenticatorAttestationResponse.Parse(jsonPost);
await o.VerifyAsync(options, _config, (x, cancellationToken) => Task.FromResult(true), _metadataService, null, CancellationToken.None);
byte[] ad = o.AttestationObject.AuthData;
var authData = new AuthenticatorData(ad);
Assert.True(authData.ToByteArray().SequenceEqual(ad));
var acdBytes = authData.AttestedCredentialData.ToByteArray();
var acd = new AttestedCredentialData(acdBytes);
Assert.True(acd.ToByteArray().SequenceEqual(acdBytes));
}
[Fact]
public async Task TestNoneAttestationAsync()
{
var jsonPost = JsonSerializer.Deserialize<AuthenticatorAttestationRawResponse>(await File.ReadAllTextAsync("./attestationResultsNone.json"));
var options = JsonSerializer.Deserialize<CredentialCreateOptions>(await File.ReadAllTextAsync("./attestationOptionsNone.json"));
var o = AuthenticatorAttestationResponse.Parse(jsonPost);
await o.VerifyAsync(options, _config, (x, cancellationToken) => Task.FromResult(true), _metadataService, null, CancellationToken.None);
}
[Fact]
public async Task TestTPMSHA256AttestationAsync()
{
var jsonPost = JsonSerializer.Deserialize<AuthenticatorAttestationRawResponse>(await File.ReadAllTextAsync("./attestationTPMSHA256Response.json"));
var options = JsonSerializer.Deserialize<CredentialCreateOptions>(await File.ReadAllTextAsync("./attestationTPMSHA256Options.json"));
var o = AuthenticatorAttestationResponse.Parse(jsonPost);
await o.VerifyAsync(options, _config, (x, cancellationToken) => Task.FromResult(true), _metadataService, null, CancellationToken.None);
byte[] ad = o.AttestationObject.AuthData;
// TODO : Why read ad ? Is the test finished ?
}
[Fact]
public async Task TestTPMSHA1AttestationAsync()
{
var jsonPost = JsonSerializer.Deserialize<AuthenticatorAttestationRawResponse>(await File.ReadAllTextAsync("./attestationTPMSHA1Response.json"));
var options = JsonSerializer.Deserialize<CredentialCreateOptions>(await File.ReadAllTextAsync("./attestationTPMSHA1Options.json"));
var o = AuthenticatorAttestationResponse.Parse(jsonPost);
await o.VerifyAsync(options, _config, (x, cancellationToken) => Task.FromResult(true), _metadataService, null, CancellationToken.None);
byte[] ad = o.AttestationObject.AuthData;
// TODO : Why read ad ? Is the test finished ?
}
[Fact]
public async Task TestAndroidKeyAttestationAsync()
{
var jsonPost = JsonSerializer.Deserialize<AuthenticatorAttestationRawResponse>(await File.ReadAllTextAsync("./attestationAndroidKeyResponse.json"));
var options = JsonSerializer.Deserialize<CredentialCreateOptions>(await File.ReadAllTextAsync("./attestationAndroidKeyOptions.json"));
var o = AuthenticatorAttestationResponse.Parse(jsonPost);
await o.VerifyAsync(options, _config, (x, cancellationToken) => Task.FromResult(true), _metadataService, null, CancellationToken.None);
byte[] ad = o.AttestationObject.AuthData;
// TODO : Why read ad ? Is the test finished ?
}
[Fact(Skip = "Need to determine how best to validate expired certificates")]
public async Task TestAppleAttestationAsync()
{
var jsonPost = JsonSerializer.Deserialize<AuthenticatorAttestationRawResponse>(await File.ReadAllTextAsync("./attestationAppleResponse.json"));
var options = JsonSerializer.Deserialize<CredentialCreateOptions>(await File.ReadAllTextAsync("./attestationAppleOptions.json"));
var o = AuthenticatorAttestationResponse.Parse(jsonPost);
var config = new Fido2Configuration { Origins = new HashSet<string> { "https://6cc3c9e7967a.ngrok.io" } };
await o.VerifyAsync(options, config, (x, cancellationToken) => Task.FromResult(true), _metadataService, null, CancellationToken.None);
byte[] ad = o.AttestationObject.AuthData;
// TODO : Why read ad ? Is the test finished ?
}
[Fact]
public async Task TaskPackedAttestation512()
{
var jsonPost = JsonSerializer.Deserialize<AuthenticatorAttestationRawResponse>(await File.ReadAllTextAsync("./attestationResultsPacked512.json"));
var options = JsonSerializer.Deserialize<CredentialCreateOptions>(await File.ReadAllTextAsync("./attestationOptionsPacked512.json"));
var o = AuthenticatorAttestationResponse.Parse(jsonPost);
await o.VerifyAsync(options, _config, (x, cancellationToken) => Task.FromResult(true), _metadataService, null, CancellationToken.None);
byte[] ad = o.AttestationObject.AuthData;
// TODO : Why read ad ? Is the test finished ?
}
[Fact]
public async Task TestTrustKeyAttestationAsync()
{
var jsonPost = JsonSerializer.Deserialize<AuthenticatorAttestationRawResponse>(await File.ReadAllTextAsync("./attestationResultTrustKeyT110.json"));
var options = JsonSerializer.Deserialize<CredentialCreateOptions>(await File.ReadAllTextAsync("./attestationOptionsTrustKeyT110.json"));
var o = AuthenticatorAttestationResponse.Parse(jsonPost);
await o.VerifyAsync(options, _config, (x, cancellationToken) => Task.FromResult(true), _metadataService, null, CancellationToken.None);
byte[] ad = o.AttestationObject.AuthData;
var authData = new AuthenticatorData(ad);
Assert.True(authData.ToByteArray().SequenceEqual(ad));
var acdBytes = authData.AttestedCredentialData.ToByteArray();
var acd = new AttestedCredentialData(acdBytes);
Assert.True(acd.ToByteArray().SequenceEqual(acdBytes));
}
[Fact]
public async Task TestInvalidU2FAttestationASync()
{
var jsonPost = JsonSerializer.Deserialize<AuthenticatorAttestationRawResponse>(await File.ReadAllTextAsync("./attestationResultsATKey.json"));
var options = JsonSerializer.Deserialize<CredentialCreateOptions>(await File.ReadAllTextAsync("./attestationOptionsATKey.json"));
var o = AuthenticatorAttestationResponse.Parse(jsonPost);
await o.VerifyAsync(options, _config, (x, cancellationToken) => Task.FromResult(true), _metadataService, null, CancellationToken.None);
byte[] ad = o.AttestationObject.AuthData;
var authData = new AuthenticatorData(ad);
Assert.True(authData.ToByteArray().SequenceEqual(ad));
var acdBytes = authData.AttestedCredentialData.ToByteArray();
var acd = new AttestedCredentialData(acdBytes);
Assert.True(acd.ToByteArray().SequenceEqual(acdBytes));
}
[Fact]
public async Task TestMdsStatusReportsSuccessAsync()
{
var options = JsonSerializer.Deserialize<CredentialCreateOptions>(await File.ReadAllTextAsync("./attestationNoneOptions.json"));
var response = JsonSerializer.Deserialize<AuthenticatorAttestationRawResponse>(await File.ReadAllTextAsync("./attestationNoneResponse.json"));
var mockMetadataService = new Mock<IMetadataService>(MockBehavior.Strict);
mockMetadataService.Setup(m => m.GetEntryAsync(It.IsAny<Guid>(), It.IsAny<CancellationToken>()))
.ReturnsAsync(new MetadataBLOBPayloadEntry()
{
StatusReports = new StatusReport[]
{
new StatusReport() { Status = AuthenticatorStatus.FIDO_CERTIFIED }
}
});
mockMetadataService.Setup(m => m.ConformanceTesting()).Returns(false);
var o = AuthenticatorAttestationResponse.Parse(response);
await o.VerifyAsync(options, _config, (x, cancellationToken) => Task.FromResult(true), mockMetadataService.Object, null, CancellationToken.None);
}
[Fact]
public async Task TestMdsStatusReportsUndesiredAsync()
{
var options = JsonSerializer.Deserialize<CredentialCreateOptions>(await File.ReadAllTextAsync("./attestationNoneOptions.json"));
var response = JsonSerializer.Deserialize<AuthenticatorAttestationRawResponse>(await File.ReadAllTextAsync("./attestationNoneResponse.json"));
var mockMetadataService = new Mock<IMetadataService>(MockBehavior.Strict);
mockMetadataService.Setup(m => m.GetEntryAsync(It.IsAny<Guid>(), It.IsAny<CancellationToken>()))
.ReturnsAsync(new MetadataBLOBPayloadEntry()
{
StatusReports = new StatusReport[]
{
new StatusReport() { Status = AuthenticatorStatus.FIDO_CERTIFIED },
new StatusReport() { Status = AuthenticatorStatus.REVOKED }
}
});
mockMetadataService.Setup(m => m.ConformanceTesting()).Returns(false);
var o = AuthenticatorAttestationResponse.Parse(response);
await Assert.ThrowsAsync<UndesiredMetdatataStatusFido2VerificationException>(() =>
o.VerifyAsync(options, _config, (x, cancellationToken) => Task.FromResult(true), mockMetadataService.Object, null, CancellationToken.None));
}
[Fact]
public async Task TestMdsStatusReportsUndesiredFixedAsync()
{
var options = JsonSerializer.Deserialize<CredentialCreateOptions>(await File.ReadAllTextAsync("./attestationNoneOptions.json"));
var response = JsonSerializer.Deserialize<AuthenticatorAttestationRawResponse>(await File.ReadAllTextAsync("./attestationNoneResponse.json"));
var mockMetadataService = new Mock<IMetadataService>(MockBehavior.Strict);
mockMetadataService.Setup(m => m.GetEntryAsync(It.IsAny<Guid>(), It.IsAny<CancellationToken>()))
.ReturnsAsync(new MetadataBLOBPayloadEntry()
{
StatusReports = new StatusReport[]
{
new StatusReport() { Status = AuthenticatorStatus.FIDO_CERTIFIED },
new StatusReport() { Status = AuthenticatorStatus.REVOKED },
new StatusReport() { Status = AuthenticatorStatus.UPDATE_AVAILABLE }
}
});
mockMetadataService.Setup(m => m.ConformanceTesting()).Returns(false);
var o = AuthenticatorAttestationResponse.Parse(response);
await o.VerifyAsync(options, _config, (x, cancellationToken) => Task.FromResult(true), mockMetadataService.Object, null, CancellationToken.None);
}
[Fact]
public async Task TestMdsStatusReportsNullAsync()
{
var options = JsonSerializer.Deserialize<CredentialCreateOptions>(await File.ReadAllTextAsync("./attestationNoneOptions.json"));
var response = JsonSerializer.Deserialize<AuthenticatorAttestationRawResponse>(await File.ReadAllTextAsync("./attestationNoneResponse.json"));
var mockMetadataService = new Mock<IMetadataService>(MockBehavior.Strict);
mockMetadataService.Setup(m => m.GetEntryAsync(It.IsAny<Guid>(), It.IsAny<CancellationToken>())).ReturnsAsync((MetadataBLOBPayloadEntry)null);
mockMetadataService.Setup(m => m.ConformanceTesting()).Returns(false);
var o = AuthenticatorAttestationResponse.Parse(response);
await o.VerifyAsync(options, _config, (x, cancellationToken) => Task.FromResult(true), mockMetadataService.Object, null, CancellationToken.None);
}
//public void TestHasCorrentAAguid()
//{
// var expectedAaguid = new Uint8Array([
// 0x42, 0x38, 0x32, 0x45, 0x44, 0x37, 0x33, 0x43, 0x38, 0x46, 0x42, 0x34, 0x45, 0x35, 0x41, 0x32
//]).buffer;
//}
[Fact]
public void TestAttestedCredentialDataES256()
{
var aaguid = new Guid("F1D0F1D0-F1D0-F1D0-F1D0-F1D0F1D0F1D0");
var credentialID = new byte[] { 0xf1, 0xd0, 0xf1, 0xd0, 0xf1, 0xd0, 0xf1, 0xd0, 0xf1, 0xd0, 0xf1, 0xd0, 0xf1, 0xd0, 0xf1, 0xd0, };
var ecdsa = MakeECDsa(COSE.Algorithm.ES256, COSE.EllipticCurve.P256);
var ecparams = ecdsa.ExportParameters(true);
var cpk = MakeCredentialPublicKey(COSE.KeyType.EC2, COSE.Algorithm.ES256, COSE.EllipticCurve.P256, ecparams.Q.X, ecparams.Q.Y);
var acdFromConst = new AttestedCredentialData(aaguid, credentialID, cpk);
var acdBytes = acdFromConst.ToByteArray();
var acdFromBytes = new AttestedCredentialData(acdBytes);
Assert.True(acdFromBytes.ToByteArray().SequenceEqual(acdFromConst.ToByteArray()));
}
[Fact]
public void TestAttestedCredentialDataRSA()
{
var aaguid = new Guid("F1D0F1D0-F1D0-F1D0-F1D0-F1D0F1D0F1D0");
var credentialID = new byte[] { 0xf1, 0xd0, 0xf1, 0xd0, 0xf1, 0xd0, 0xf1, 0xd0, 0xf1, 0xd0, 0xf1, 0xd0, 0xf1, 0xd0, 0xf1, 0xd0, };
var rsa = RSA.Create();
var rsaparams = rsa.ExportParameters(true);
var cpk = MakeCredentialPublicKey(COSE.KeyType.RSA, COSE.Algorithm.RS256, rsaparams.Modulus, rsaparams.Exponent);
var acdFromConst = new AttestedCredentialData(aaguid, credentialID, cpk);
var acdBytes = acdFromConst.ToByteArray();
var acdFromBytes = new AttestedCredentialData(acdBytes);
Assert.True(acdFromBytes.ToByteArray().SequenceEqual(acdFromConst.ToByteArray()));
var sig = SignData(COSE.KeyType.RSA, COSE.Algorithm.RS256, acdBytes, null, rsa, null);
Assert.True(cpk.Verify(acdBytes, sig));
sig[sig.Length - 1] ^= 0xff;
Assert.False(cpk.Verify(acdBytes, sig));
}
[Fact]
public void TestAttestedCredentialDataOKP()
{
var aaguid = new Guid("F1D0F1D0-F1D0-F1D0-F1D0-F1D0F1D0F1D0");
var credentialID = new byte[] { 0xf1, 0xd0, 0xf1, 0xd0, 0xf1, 0xd0, 0xf1, 0xd0, 0xf1, 0xd0, 0xf1, 0xd0, 0xf1, 0xd0, 0xf1, 0xd0, };
MakeEdDSA(out _, out var publicKey, out var privateKey);
var cpk = MakeCredentialPublicKey(COSE.KeyType.OKP, COSE.Algorithm.EdDSA, COSE.EllipticCurve.Ed25519, publicKey);
var acdFromConst = new AttestedCredentialData(aaguid, credentialID, cpk);
var acdBytes = acdFromConst.ToByteArray();
var acdFromBytes = new AttestedCredentialData(acdBytes);
Assert.True(acdFromBytes.ToByteArray().SequenceEqual(acdFromConst.ToByteArray()));
var sig = SignData(COSE.KeyType.OKP, COSE.Algorithm.EdDSA, acdBytes, null, null, privateKey);
Assert.True(cpk.Verify(acdBytes, sig));
sig[sig.Length - 1] ^= 0xff;
Assert.False(cpk.Verify(acdBytes, sig));
}
[Fact]
public void TestAuthenticatorData()
{
byte[] rpId = Encoding.UTF8.GetBytes("fido2.azurewebsites.net/");
var rpIdHash = SHA256.HashData(rpId);
var flags = AuthenticatorFlags.AT | AuthenticatorFlags.ED | AuthenticatorFlags.UP | AuthenticatorFlags.UV;
const ushort signCount = 0xf1d0;
var aaguid = new Guid("F1D0F1D0-F1D0-F1D0-F1D0-F1D0F1D0F1D0");
var credentialID = new byte[] { 0xf1, 0xd0, 0xf1, 0xd0, 0xf1, 0xd0, 0xf1, 0xd0, 0xf1, 0xd0, 0xf1, 0xd0, 0xf1, 0xd0, 0xf1, 0xd0, };
var ecdsa = MakeECDsa(COSE.Algorithm.ES256, COSE.EllipticCurve.P256);
var ecparams = ecdsa.ExportParameters(true);
var cpk = MakeCredentialPublicKey(COSE.KeyType.EC2, COSE.Algorithm.ES256, COSE.EllipticCurve.P256, ecparams.Q.X, ecparams.Q.Y);
var acd = new AttestedCredentialData(aaguid, credentialID, cpk);
var extBytes = new CborMap { { "testing", true } }.Encode();
var exts = new Extensions(extBytes);
var ad = new AuthenticatorData(rpIdHash, flags, signCount, acd, exts);
Assert.True(ad.RpIdHash.SequenceEqual(rpIdHash));
Assert.True(ad.HasAttestedCredentialData | ad.UserPresent | ad.UserVerified | ad.HasExtensionsData);
Assert.True(ad.SignCount == signCount);
Assert.True(ad.AttestedCredentialData.ToByteArray().SequenceEqual(acd.ToByteArray()));
Assert.True(ad.Extensions.GetBytes().SequenceEqual(extBytes));
}
internal static byte[] EcDsaSigFromSig(ReadOnlySpan<byte> sig, int keySize)
{
var coefficientSize = (int)Math.Ceiling((decimal)keySize / 8);
var r = sig.Slice(0, coefficientSize);
var s = sig.Slice(sig.Length - coefficientSize);
var writer = new AsnWriter(AsnEncodingRules.BER);
ReadOnlySpan<byte> zero = new byte[1] { 0 };
using (writer.PushSequence())
{
writer.WriteIntegerUnsigned(r.TrimStart(zero));
writer.WriteIntegerUnsigned(s.TrimStart(zero));
}
return writer.Encode();
}
[Fact]
public void TestAssertionResponse()
{
AssertionVerificationResult avr;
_validCOSEParameters.ForEach(async ((COSE.KeyType, COSE.Algorithm, COSE.EllipticCurve) param) =>
{
var (type, alg, curve) = param;
if (curve != default)
{
avr = await MakeAssertionResponse(type, alg, curve);
}
else
{
avr = await MakeAssertionResponse(type, alg);
}
Assert.Equal("", avr.ErrorMessage);
Assert.Equal("ok", avr.Status);
Assert.Equal(new byte[] { 0xf1, 0xd0 }, avr.CredentialId);
Assert.Equal("1", avr.Counter.ToString("X"));
});
}
internal static byte[] CreatePubArea(byte[] type, byte[] alg, byte[] attributes, byte[] policy, byte[] symmetric,
byte[] scheme, byte[] keyBits, byte[] exponent, byte[] curveID, byte[] kdf, byte[] unique)
{
var tpmalg = (TpmAlg)Enum.ToObject(typeof(TpmAlg), BinaryPrimitives.ReadUInt16BigEndian(type));
IEnumerable<byte> raw = null;
var uniqueLen = new byte[2];
BinaryPrimitives.WriteUInt16BigEndian(uniqueLen, (UInt16)unique.Length);
if (TpmAlg.TPM_ALG_RSA == tpmalg)
{
raw
= type
.Concat(alg)
.Concat(attributes)
.Concat(BitConverter.GetBytes((UInt16)policy.Length)
.Reverse()
.ToArray())
.Concat(policy)
.Concat(symmetric)
.Concat(scheme)
.Concat(keyBits)
.Concat(BitConverter.GetBytes(exponent[0] + (exponent[1] << 8) + (exponent[2] << 16)))
.Concat(BitConverter.GetBytes((UInt16)unique.Length)
.Reverse()
.ToArray())
.Concat(unique);
}
if (TpmAlg.TPM_ALG_ECC == tpmalg)
{
raw = type
.Concat(alg)
.Concat(attributes)
.Concat(BitConverter.GetBytes((UInt16)policy.Length)
.Reverse()
.ToArray())
.Concat(policy)
.Concat(symmetric)
.Concat(scheme)
.Concat(curveID)
.Concat(kdf)
.Concat(BitConverter.GetBytes((UInt16)unique.Length)
.Reverse()
.ToArray())
.Concat(unique);
}
return raw.ToArray();
}
internal static byte[] CreateCertInfo(byte[] magic, byte[] type, byte[] qualifiedSigner,
byte[] extraData, byte[] clock, byte[] resetCount, byte[] restartCount,
byte[] safe, byte[] firmwareRevision, byte[] tPM2BName, byte[] attestedQualifiedNameBuffer)
{
var raw = new MemoryStream();
raw.Write(magic);
raw.Write(type);
raw.Write(qualifiedSigner);
raw.Write(extraData);
raw.Write(clock);
raw.Write(resetCount);
raw.Write(restartCount);
raw.Write(safe);
raw.Write(firmwareRevision);
raw.Write(tPM2BName);
raw.Write(attestedQualifiedNameBuffer);
return raw.ToArray();
}
internal static async Task<AssertionVerificationResult> MakeAssertionResponse(COSE.KeyType kty, COSE.Algorithm alg, COSE.EllipticCurve crv = COSE.EllipticCurve.P256, CredentialPublicKey cpk = null, ushort signCount = 0, ECDsa ecdsa = null, RSA rsa = null, byte[] expandedPrivateKey = null)
{
const string rp = "https://www.passwordless.dev";
byte[] rpId = Encoding.UTF8.GetBytes(rp);
var rpIdHash = SHA256.HashData(rpId);
var flags = AuthenticatorFlags.AT | AuthenticatorFlags.ED | AuthenticatorFlags.UP | AuthenticatorFlags.UV;
var aaguid = new Guid("F1D0F1D0-F1D0-F1D0-F1D0-F1D0F1D0F1D0");
var credentialID = new byte[] { 0xf1, 0xd0, 0xf1, 0xd0, 0xf1, 0xd0, 0xf1, 0xd0, 0xf1, 0xd0, 0xf1, 0xd0, 0xf1, 0xd0, 0xf1, 0xd0, };
if (cpk == null)
{
switch (kty)
{
case COSE.KeyType.EC2:
{
ecdsa ??= MakeECDsa(alg, crv);
var ecparams = ecdsa.ExportParameters(true);
cpk = MakeCredentialPublicKey(kty, alg, crv, ecparams.Q.X, ecparams.Q.Y);
break;
}
case COSE.KeyType.RSA:
{
rsa ??= RSA.Create();
var rsaparams = rsa.ExportParameters(true);
cpk = MakeCredentialPublicKey(kty, alg, rsaparams.Modulus, rsaparams.Exponent);
break;
}
case COSE.KeyType.OKP:
{
byte[] publicKey = null;
if (expandedPrivateKey == null)
{
MakeEdDSA(out var privateKeySeed, out publicKey, out expandedPrivateKey);
}
cpk = MakeCredentialPublicKey(kty, alg, COSE.EllipticCurve.Ed25519, publicKey);
break;
}
default:
throw new ArgumentOutOfRangeException(nameof(kty), $"Missing or unknown kty {kty}");
}
}
var acd = new AttestedCredentialData(aaguid, credentialID, cpk);
var extBytes = new CborMap { { "testing", true } }.Encode();
var exts = new Extensions(extBytes);
var ad = new AuthenticatorData(rpIdHash, flags, (uint)(signCount + 1), acd, exts);
var authData = ad.ToByteArray();
var challenge = new byte[128];
RandomNumberGenerator.Fill(challenge);
var clientData = new
{
type = "webauthn.get",
challenge = challenge,
origin = rp,
};
var clientDataJson = JsonSerializer.SerializeToUtf8Bytes(clientData);
var hashedClientDataJson = SHA256.HashData(clientDataJson);
byte[] data = new byte[authData.Length + hashedClientDataJson.Length];
Buffer.BlockCopy(authData, 0, data, 0, authData.Length);
Buffer.BlockCopy(hashedClientDataJson, 0, data, authData.Length, hashedClientDataJson.Length);
byte[] signature = SignData(kty, alg, data, ecdsa, rsa, expandedPrivateKey);
var userHandle = new byte[16];
RandomNumberGenerator.Fill(userHandle);
var assertion = new AuthenticatorAssertionRawResponse.AssertionResponse()
{
AuthenticatorData = authData,
Signature = signature,
ClientDataJson = clientDataJson,
UserHandle = userHandle,
};
IFido2 lib = new Fido2(new Fido2Configuration()
{
ServerDomain = rp,
ServerName = rp,
Origins = new HashSet<string> { rp },
});
var existingCredentials = new List<PublicKeyCredentialDescriptor>();
var cred = new PublicKeyCredentialDescriptor
{