杨前锦
2025-07-07 c8f338feee0b6003d8f069b1d37fd9b90dd1b7f4
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
<?xml version="1.0"?>
<doc>
    <assembly>
        <name>JWT</name>
    </assembly>
    <members>
        <member name="P:JWT.Algorithms.CertificateAlgorithm`1.Name">
            <inheritdoc />
        </member>
        <member name="P:JWT.Algorithms.CertificateAlgorithm`1.HashAlgorithmName">
            <inheritdoc />
        </member>
        <member name="M:JWT.Algorithms.CertificateAlgorithm`1.Sign(System.Byte[],System.Byte[])">
            <inheritdoc />
        </member>
        <member name="M:JWT.Algorithms.CertificateAlgorithm`1.Sign(System.Byte[])">
            <summary>
            Signs the provided byte array with the private key.
            </summary>
        </member>
        <member name="M:JWT.Algorithms.CertificateAlgorithm`1.Verify(System.Byte[],System.Byte[])">
            <inheritdoc />
        </member>
        <member name="T:JWT.Algorithms.DelegateAlgorithmFactory">
            <summary>
            Implements <see href="IAlgorithmFactory" /> by returning the supplied <see href="IJwtAlgorithm" /> while ignoring parameters.
            </summary>
        </member>
        <member name="M:JWT.Algorithms.DelegateAlgorithmFactory.#ctor(System.Func{JWT.JwtDecoderContext,JWT.Algorithms.IJwtAlgorithm})">
            <summary>
            Creates an instance of <see cref="T:JWT.Algorithms.DelegateAlgorithmFactory" /> with supplied delegate to an algorithm with a context.
            </summary>
            <exception cref="T:System.ArgumentNullException" />
        </member>
        <member name="M:JWT.Algorithms.DelegateAlgorithmFactory.#ctor(System.Func{JWT.Algorithms.IJwtAlgorithm})">
            <summary>
            Creates an instance of <see cref="T:JWT.Algorithms.DelegateAlgorithmFactory" /> with supplied delegate to an algorithm.
            </summary>
            <exception cref="T:System.ArgumentNullException" />
        </member>
        <member name="M:JWT.Algorithms.DelegateAlgorithmFactory.#ctor(JWT.Algorithms.IAlgorithmFactory)">
            <summary>
            Creates an instance of <see cref="T:JWT.Algorithms.DelegateAlgorithmFactory" /> with supplied algorithm factory.
            </summary>
            <exception cref="T:System.ArgumentNullException" />
        </member>
        <member name="M:JWT.Algorithms.DelegateAlgorithmFactory.#ctor(JWT.Algorithms.IJwtAlgorithm)">
            <summary>
            Creates an instance of <see cref="T:JWT.Algorithms.DelegateAlgorithmFactory" /> with supplied algorithm.
            </summary>
            <exception cref="T:System.ArgumentNullException" />
        </member>
        <member name="M:JWT.Algorithms.DelegateAlgorithmFactory.Create(JWT.JwtDecoderContext)">
            <inheritdoc />
        </member>
        <member name="T:JWT.Algorithms.ECDSAAlgorithmFactory">
            <inheritdoc />
        </member>
        <member name="M:JWT.Algorithms.GenericAlgorithmFactory`1.Create(JWT.JwtDecoderContext)">
            <inheritdoc />
        </member>
        <member name="T:JWT.Algorithms.HMACSHA256Algorithm">
            <summary>
            HMAC using SHA-256
            </summary>
        </member>
        <member name="P:JWT.Algorithms.HMACSHA256Algorithm.Name">
            <inheritdoc />
        </member>
        <member name="P:JWT.Algorithms.HMACSHA256Algorithm.HashAlgorithmName">
            <inheritdoc />
        </member>
        <member name="T:JWT.Algorithms.HMACSHA384Algorithm">
            <summary>
            HMAC using SHA-384
            </summary>
        </member>
        <member name="P:JWT.Algorithms.HMACSHA384Algorithm.Name">
            <inheritdoc />
        </member>
        <member name="P:JWT.Algorithms.HMACSHA384Algorithm.HashAlgorithmName">
            <inheritdoc />
        </member>
        <member name="T:JWT.Algorithms.HMACSHA512Algorithm">
            <summary>
            HMAC using SHA-512
            </summary>
        </member>
        <member name="P:JWT.Algorithms.HMACSHA512Algorithm.Name">
            <inheritdoc />
        </member>
        <member name="P:JWT.Algorithms.HMACSHA512Algorithm.HashAlgorithmName">
            <inheritdoc />
        </member>
        <member name="P:JWT.Algorithms.HMACSHAAlgorithm.Name">
            <inheritdoc />
        </member>
        <member name="P:JWT.Algorithms.HMACSHAAlgorithm.HashAlgorithmName">
            <inheritdoc />
        </member>
        <member name="M:JWT.Algorithms.HMACSHAAlgorithm.Sign(System.Byte[],System.Byte[])">
            <inheritdoc />
        </member>
        <member name="T:JWT.Algorithms.HMACSHAAlgorithmFactory">
            <inheritdoc />
        </member>
        <member name="T:JWT.Algorithms.IAlgorithmFactory">
            <summary>
            Provides IJwtAlgorithms.
            </summary>
        </member>
        <member name="M:JWT.Algorithms.IAlgorithmFactory.Create(JWT.JwtDecoderContext)">
            <summary>
            Creates an AlgorithmFactory using the provided algorithm enum.
            </summary>
            <param name="context">The captured context during validation of JWT inside <see cref="T:JWT.JwtDecoder"/></param>
        </member>
        <member name="T:JWT.Algorithms.IAsymmetricAlgorithm">
            <summary>
            Represents an asymmetric algorithm to generate or validate JWT signature.
            </summary>
        </member>
        <member name="M:JWT.Algorithms.IAsymmetricAlgorithm.Verify(System.Byte[],System.Byte[])">
            <summary>
            Verifies provided byte array with provided signature.
            </summary>
            <param name="bytesToSign">The data to verify</param>
            <param name="signature">The signature to verify with</param>
        </member>
        <member name="T:JWT.Algorithms.IJwtAlgorithm">
            <summary>
            Represents an algorithm to generate JWT signature.
            </summary>
        </member>
        <member name="M:JWT.Algorithms.IJwtAlgorithm.Sign(System.Byte[],System.Byte[])">
            <summary>
            Signs provided byte array with provided key.
            </summary>
            <param name="key">The key used to sign the data</param>
            <param name="bytesToSign">The data to sign</param>
        </member>
        <member name="P:JWT.Algorithms.IJwtAlgorithm.Name">
            <summary>
            Gets algorithm name.
            </summary>
        </member>
        <member name="P:JWT.Algorithms.IJwtAlgorithm.HashAlgorithmName">
            <summary>
            Gets name of the hashing algorithm (e.g. SHA-256/SHA-384/SHA-512).
            </summary>
        </member>
        <member name="T:JWT.Algorithms.JwtAlgorithmExtensions">
             <summary>
             Extension methods for <seealso cref="T:JWT.Algorithms.IJwtAlgorithm" />
            </summary>
        </member>
        <member name="M:JWT.Algorithms.JwtAlgorithmExtensions.IsAsymmetric(JWT.Algorithms.IJwtAlgorithm)">
            <summary>
            Returns whether or not the algorithm is asymmetric.
            </summary>
            <param name="alg">The algorithm instance.</param>
        </member>
        <member name="T:JWT.Algorithms.JwtAlgorithmFactory">
            <inheritdoc />
        </member>
        <member name="M:JWT.Algorithms.JwtAlgorithmFactory.Create(JWT.JwtDecoderContext)">
            <inheritdoc />
        </member>
        <member name="T:JWT.Algorithms.JwtAlgorithmName">
            <summary>
            Enum representing the various Jwt Hash Algorithms.
            </summary>
        </member>
        <member name="F:JWT.Algorithms.JwtAlgorithmName.HS256">
            <summary>
            HMAC using SHA-256
            </summary>
        </member>
        <member name="F:JWT.Algorithms.JwtAlgorithmName.HS384">
            <summary>
            HMAC using SHA-384
            </summary>
        </member>
        <member name="F:JWT.Algorithms.JwtAlgorithmName.HS512">
            <summary>
            HMAC using SHA-512
            </summary>
        </member>
        <member name="F:JWT.Algorithms.JwtAlgorithmName.RS256">
            <summary>
            RSASSA-PKCS1-v1_5 using SHA-256
            </summary>
        </member>
        <member name="F:JWT.Algorithms.JwtAlgorithmName.RS384">
            <summary>
            RSASSA-PKCS1-v1_5 using SHA-384
            </summary>
        </member>
        <member name="F:JWT.Algorithms.JwtAlgorithmName.RS512">
            <summary>
            RSASSA-PKCS1-v1_5 using SHA-512
            </summary>
        </member>
        <member name="F:JWT.Algorithms.JwtAlgorithmName.RS1024">
            <summary>
            RSASSA-PKCS1-v1_5 using SHA-1024
            </summary>
        </member>
        <member name="F:JWT.Algorithms.JwtAlgorithmName.RS2048">
            <summary>
            RSASSA-PKCS1-v1_5 using SHA-2048
            </summary>
        </member>
        <member name="F:JWT.Algorithms.JwtAlgorithmName.RS4096">
            <summary>
            RSASSA-PKCS1-v1_5 using SHA-4096
            </summary>
        </member>
        <member name="F:JWT.Algorithms.JwtAlgorithmName.ES256">
            <summary>
            ECDSA using SHA-256
            </summary>
        </member>
        <member name="F:JWT.Algorithms.JwtAlgorithmName.ES384">
            <summary>
            ECDSA using SHA-384
            </summary>
        </member>
        <member name="F:JWT.Algorithms.JwtAlgorithmName.ES512">
            <summary>
            ECDSA using SHA-512
            </summary>
        </member>
        <member name="F:JWT.Algorithms.JwtAlgorithmName.None">
            <summary>
            Algorithm used when no signing is wanted
            </summary>
        </member>
        <member name="T:JWT.Algorithms.NoneAlgorithm">
            <summary>
            Implements the "None" algorithm.
            </summary>
            <see href="https://datatracker.ietf.org/doc/html/rfc7519#section-6">RFC-7519</see>
        </member>
        <member name="P:JWT.Algorithms.NoneAlgorithm.Name">
            <inheritdoc />
        </member>
        <member name="P:JWT.Algorithms.NoneAlgorithm.HashAlgorithmName">
            <inheritdoc />
        </member>
        <member name="M:JWT.Algorithms.NoneAlgorithm.Sign(System.Byte[],System.Byte[])">
            <inheritdoc />
        </member>
        <member name="T:JWT.Algorithms.RS1024Algorithm">
            <summary>
            RSASSA-PKCS1-v1_5 using SHA-1024
            </summary>
        </member>
        <member name="M:JWT.Algorithms.RS1024Algorithm.#ctor(System.Security.Cryptography.RSA,System.Security.Cryptography.RSA)">
            <summary>
            Creates an instance of <see cref="T:JWT.Algorithms.RS1024Algorithm" /> using the provided pair of public and private keys.
            </summary>
            <param name="publicKey">The public key for verifying the data.</param>
            <param name="privateKey">The private key for signing the data.</param>
        </member>
        <member name="M:JWT.Algorithms.RS1024Algorithm.#ctor(System.Security.Cryptography.RSA)">
            <summary>
            Creates an instance of <see cref="T:JWT.Algorithms.RS1024Algorithm" /> using the provided public key only.
            </summary>
            <remarks>
            An instance created using this constructor can only be used for verifying the data, not for signing it.
            </remarks>
            <param name="publicKey">The public key for verifying the data.</param>
        </member>
        <member name="M:JWT.Algorithms.RS1024Algorithm.#ctor(System.Security.Cryptography.X509Certificates.X509Certificate2)">
            <summary>
            Creates an instance using the provided certificate.
            </summary>
            <param name="cert">The certificate having a public key and an optional private key.</param>
        </member>
        <member name="P:JWT.Algorithms.RS1024Algorithm.Name">
            <inheritdoc />
        </member>
        <member name="P:JWT.Algorithms.RS1024Algorithm.HashAlgorithmName">
            <inheritdoc />
        </member>
        <member name="T:JWT.Algorithms.RS2048Algorithm">
            <summary>
            RSASSA-PKCS1-v1_5 using SHA-2048
            </summary>
        </member>
        <member name="M:JWT.Algorithms.RS2048Algorithm.#ctor(System.Security.Cryptography.RSA,System.Security.Cryptography.RSA)">
            <summary>
            Creates an instance of <see cref="T:JWT.Algorithms.RS2048Algorithm" /> using the provided pair of public and private keys.
            </summary>
            <param name="publicKey">The public key for verifying the data.</param>
            <param name="privateKey">The private key for signing the data.</param>
        </member>
        <member name="M:JWT.Algorithms.RS2048Algorithm.#ctor(System.Security.Cryptography.RSA)">
            <summary>
            Creates an instance of <see cref="T:JWT.Algorithms.RS2048Algorithm" /> using the provided public key only.
            </summary>
            <remarks>
            An instance created using this constructor can only be used for verifying the data, not for signing it.
            </remarks>
            <param name="publicKey">The public key for verifying the data.</param>
        </member>
        <member name="M:JWT.Algorithms.RS2048Algorithm.#ctor(System.Security.Cryptography.X509Certificates.X509Certificate2)">
            <summary>
            Creates an instance using the provided certificate.
            </summary>
            <param name="cert">The certificate having a public key and an optional private key.</param>
        </member>
        <member name="P:JWT.Algorithms.RS2048Algorithm.Name">
            <inheritdoc />
        </member>
        <member name="P:JWT.Algorithms.RS2048Algorithm.HashAlgorithmName">
            <inheritdoc />
        </member>
        <member name="T:JWT.Algorithms.RS256Algorithm">
            <summary>
            RSASSA-PKCS1-v1_5 using SHA-256
            </summary>
        </member>
        <member name="M:JWT.Algorithms.RS256Algorithm.#ctor(System.Security.Cryptography.RSA,System.Security.Cryptography.RSA)">
            <summary>
            Creates an instance of <see cref="T:JWT.Algorithms.RS256Algorithm" /> using the provided pair of public and private keys.
            </summary>
            <param name="publicKey">The public key for verifying the data.</param>
            <param name="privateKey">The private key for signing the data.</param>
        </member>
        <member name="M:JWT.Algorithms.RS256Algorithm.#ctor(System.Security.Cryptography.RSA)">
            <summary>
            Creates an instance of <see cref="T:JWT.Algorithms.RS256Algorithm" /> using the provided public key only.
            </summary>
            <remarks>
            An instance created using this constructor can only be used for verifying the data, not for signing it.
            </remarks>
            <param name="publicKey">The public key for verifying the data.</param>
        </member>
        <member name="M:JWT.Algorithms.RS256Algorithm.#ctor(System.Security.Cryptography.X509Certificates.X509Certificate2)">
            <summary>
            Creates an instance using the provided certificate.
            </summary>
            <param name="cert">The certificate having a public key and an optional private key.</param>
        </member>
        <member name="P:JWT.Algorithms.RS256Algorithm.Name">
            <inheritdoc />
        </member>
        <member name="P:JWT.Algorithms.RS256Algorithm.HashAlgorithmName">
            <inheritdoc />
        </member>
        <member name="T:JWT.Algorithms.RS384Algorithm">
            <summary>
            RSASSA-PKCS1-v1_5 using SHA-384
            </summary>
        </member>
        <member name="M:JWT.Algorithms.RS384Algorithm.#ctor(System.Security.Cryptography.RSA,System.Security.Cryptography.RSA)">
            <summary>
            Creates an instance of <see cref="T:JWT.Algorithms.RS384Algorithm" /> using the provided pair of public and private keys.
            </summary>
            <param name="publicKey">The public key for verifying the data.</param>
            <param name="privateKey">The private key for signing the data.</param>
        </member>
        <member name="M:JWT.Algorithms.RS384Algorithm.#ctor(System.Security.Cryptography.RSA)">
            <summary>
            Creates an instance of <see cref="T:JWT.Algorithms.RS384Algorithm" /> using the provided public key only.
            </summary>
            <remarks>
            An instance created using this constructor can only be used for verifying the data, not for signing it.
            </remarks>
            <param name="publicKey">The public key for verifying the data.</param>
        </member>
        <member name="M:JWT.Algorithms.RS384Algorithm.#ctor(System.Security.Cryptography.X509Certificates.X509Certificate2)">
            <summary>
            Creates an instance using the provided certificate.
            </summary>
            <param name="cert">The certificate having a public key and an optional private key.</param>
        </member>
        <member name="P:JWT.Algorithms.RS384Algorithm.Name">
            <inheritdoc />
        </member>
        <member name="P:JWT.Algorithms.RS384Algorithm.HashAlgorithmName">
            <inheritdoc />
        </member>
        <member name="T:JWT.Algorithms.RS4096Algorithm">
            <summary>
            RSASSA-PKCS1-v1_5 using SHA-4096
            </summary>
        </member>
        <member name="M:JWT.Algorithms.RS4096Algorithm.#ctor(System.Security.Cryptography.RSA,System.Security.Cryptography.RSA)">
            <summary>
            Creates an instance of <see cref="T:JWT.Algorithms.RS4096Algorithm" /> using the provided pair of public and private keys.
            </summary>
            <param name="publicKey">The public key for verifying the data.</param>
            <param name="privateKey">The private key for signing the data.</param>
        </member>
        <member name="M:JWT.Algorithms.RS4096Algorithm.#ctor(System.Security.Cryptography.RSA)">
            <summary>
            Creates an instance of <see cref="T:JWT.Algorithms.RS4096Algorithm" /> using the provided public key only.
            </summary>
            <remarks>
            An instance created using this constructor can only be used for verifying the data, not for signing it.
            </remarks>
            <param name="publicKey">The public key for verifying the data.</param>
        </member>
        <member name="M:JWT.Algorithms.RS4096Algorithm.#ctor(System.Security.Cryptography.X509Certificates.X509Certificate2)">
            <summary>
            Creates an instance using the provided certificate.
            </summary>
            <param name="cert">The certificate having a public key and an optional private key.</param>
        </member>
        <member name="P:JWT.Algorithms.RS4096Algorithm.Name">
            <inheritdoc />
        </member>
        <member name="P:JWT.Algorithms.RS4096Algorithm.HashAlgorithmName">
            <inheritdoc />
        </member>
        <member name="T:JWT.Algorithms.RS512Algorithm">
            <summary>
            RSASSA-PKCS1-v1_5 using SHA-512
            </summary>
        </member>
        <member name="M:JWT.Algorithms.RS512Algorithm.#ctor(System.Security.Cryptography.RSA,System.Security.Cryptography.RSA)">
            <summary>
            Creates an instance of <see cref="T:JWT.Algorithms.RS512Algorithm" /> using the provided pair of public and private keys.
            </summary>
            <param name="publicKey">The public key for verifying the data.</param>
            <param name="privateKey">The private key for signing the data.</param>
        </member>
        <member name="M:JWT.Algorithms.RS512Algorithm.#ctor(System.Security.Cryptography.RSA)">
            <summary>
            Creates an instance of <see cref="T:JWT.Algorithms.RS512Algorithm" /> using the provided public key only.
            </summary>
            <remarks>
            An instance created using this constructor can only be used for verifying the data, not for signing it.
            </remarks>
            <param name="publicKey">The public key for verifying the data.</param>
        </member>
        <member name="M:JWT.Algorithms.RS512Algorithm.#ctor(System.Security.Cryptography.X509Certificates.X509Certificate2)">
            <summary>
            Creates an instance using the provided certificate.
            </summary>
            <param name="cert">The certificate having a public key and an optional private key.</param>
        </member>
        <member name="P:JWT.Algorithms.RS512Algorithm.Name">
            <inheritdoc />
        </member>
        <member name="P:JWT.Algorithms.RS512Algorithm.HashAlgorithmName">
            <inheritdoc />
        </member>
        <member name="T:JWT.Algorithms.RSAlgorithm">
            <summary>
            RSASSA-PKCS1-v1_5 using SHA-256
            </summary>
        </member>
        <member name="M:JWT.Algorithms.RSAlgorithm.#ctor(System.Security.Cryptography.RSA,System.Security.Cryptography.RSA)">
            <summary>
            Creates an instance of <see cref="T:JWT.Algorithms.RSAlgorithm" /> using the provided pair of public and private keys.
            </summary>
            <param name="publicKey">The public key for verifying the data.</param>
            <param name="privateKey">The private key for signing the data.</param>
        </member>
        <member name="M:JWT.Algorithms.RSAlgorithm.#ctor(System.Security.Cryptography.RSA)">
            <summary>
            Creates an instance of <see cref="T:JWT.Algorithms.RSAlgorithm" /> using the provided public key only.
            </summary>
            <remarks>
            An instance created using this constructor can only be used for verifying the data, not for signing it.
            </remarks>
            <param name="publicKey">The public key for verifying the data.</param>
        </member>
        <member name="M:JWT.Algorithms.RSAlgorithm.#ctor(System.Security.Cryptography.X509Certificates.X509Certificate2)">
            <summary>
            Creates an instance using the provided certificate.
            </summary>
            <param name="cert">The certificate having a public key and an optional private key.</param>
        </member>
        <member name="T:JWT.Algorithms.RSAlgorithmFactory">
            <inheritdoc />
        </member>
        <member name="M:JWT.Algorithms.RSAlgorithmFactory.#ctor(System.Func{System.Security.Cryptography.X509Certificates.X509Certificate2})">
            <summary>
            Creates an instance of the <see cref="T:JWT.Algorithms.RSAlgorithmFactory" /> class using the provided <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" />.
            </summary>
            <param name="certFactory">Func that returns <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" /> which will be used to instantiate <see cref="T:JWT.Algorithms.RS256Algorithm" /></param>
        </member>
        <member name="M:JWT.Algorithms.RSAlgorithmFactory.#ctor(System.Security.Cryptography.RSA)">
            <summary>
            Creates an instance of <see cref="T:JWT.Algorithms.RSAlgorithmFactory"/> using the provided public key only.
            </summary>
            <param name="publicKey">The public key for verifying the data.</param>
        </member>
        <member name="M:JWT.Algorithms.RSAlgorithmFactory.#ctor(System.Security.Cryptography.RSA,System.Security.Cryptography.RSA)">
            <summary>
            Creates an instance of <see cref="T:JWT.Algorithms.RSAlgorithmFactory"/> using the provided pair of public and private keys.
            </summary>
            <param name="publicKey">The public key for verifying the data.</param>
            <param name="privateKey">The private key for signing the data.</param>
        </member>
        <member name="T:JWT.Builder.ClaimName">
            <summary>
            All public claims of a JWT specified by IANA, see https://www.iana.org/assignments/jwt/jwt.xhtml
            </summary>
        </member>
        <member name="M:JWT.Builder.EnumExtensions.GetHeaderName(JWT.Builder.HeaderName)">
            <summary>
            Gets the string representation of a well-known header name enum
            </summary>
        </member>
        <member name="M:JWT.Builder.EnumExtensions.GetPublicClaimName(JWT.Builder.ClaimName)">
            <summary>
            Gets the string representation of a well-known claim name enum
            </summary>
        </member>
        <member name="M:JWT.Builder.EnumExtensions.GetDescription``1(``0)">
            <summary>
            Gets the value of the <see cref="T:System.ComponentModel.DescriptionAttribute" /> from the object.
            </summary>
        </member>
        <member name="T:JWT.Builder.HeaderName">
            <summary>
            All predefined parameter names specified by RFC 7515, see https://tools.ietf.org/html/rfc7515
            </summary>
        </member>
        <member name="T:JWT.Builder.JwtBuilder">
            <summary>
            Encode and decode JWT with Fluent API.
            </summary>
        </member>
        <member name="M:JWT.Builder.JwtBuilder.Create">
            <summary>
            Creates a new instance of instance <see cref="T:JWT.Builder.JwtBuilder" />
            </summary>
        </member>
        <member name="M:JWT.Builder.JwtBuilder.AddHeader(JWT.Builder.HeaderName,System.Object)">
            <summary>
            Add header to the JWT.
            </summary>
            <param name="name">Well-known header name</param>
            <param name="value">The value you want give to the header</param>
            <returns>Current builder instance</returns>
        </member>
        <member name="M:JWT.Builder.JwtBuilder.AddHeader(System.String,System.Object)">
            <summary>
            Add header to the JWT.
            </summary>
            <remarks>This adds a non-standard header value.</remarks>
            <param name="name">Header name</param>
            <param name="value">The value you want give to the header</param>
            <returns>Current builder instance</returns>
        </member>
        <member name="M:JWT.Builder.JwtBuilder.AddClaim(System.String,System.Object)">
            <summary>
            Adds claim to the JWT.
            </summary>
            <param name="name">Claim name</param>
            <param name="value">Claim value</param>
            <returns>Current builder instance</returns>
        </member>
        <member name="M:JWT.Builder.JwtBuilder.WithJsonSerializer(JWT.IJsonSerializer)">
            <summary>
            Sets JWT serializer.
            </summary>
            <returns>Current builder instance</returns>
        </member>
        <member name="M:JWT.Builder.JwtBuilder.WithJsonSerializer(System.Func{JWT.IJsonSerializer})">
            <summary>
            Sets JWT serializer.
            </summary>
            <returns>Current builder instance</returns>
        </member>
        <member name="M:JWT.Builder.JwtBuilder.WithJsonSerializerFactory(JWT.Serializers.IJsonSerializerFactory)">
            <summary>
            Sets JWT serializer factory.
            </summary>
            <returns>Current builder instance</returns>
        </member>
        <member name="M:JWT.Builder.JwtBuilder.WithDateTimeProvider(JWT.IDateTimeProvider)">
            <summary>
            Sets custom datetime provider.
            </summary>
            <remarks>
            If not set then default <see cref="T:JWT.UtcDateTimeProvider" /> will be used.
            </remarks>
            <returns>Current builder instance</returns>
        </member>
        <member name="M:JWT.Builder.JwtBuilder.WithEncoder(JWT.IJwtEncoder)">
            <summary>
            Sets JWT encoder.
            </summary>
            <returns>Current builder instance</returns>
        </member>
        <member name="M:JWT.Builder.JwtBuilder.WithDecoder(JWT.IJwtDecoder)">
            <summary>
            Sets JWT decoder.
            </summary>
            <returns>Current builder instance</returns>
        </member>
        <member name="M:JWT.Builder.JwtBuilder.WithValidator(JWT.IJwtValidator)">
            <summary>
            Sets JWT validator.
            </summary>
            <remarks>
            Required to decode with verification.
            </remarks>
            <returns>Current builder instance</returns>
        </member>
        <member name="M:JWT.Builder.JwtBuilder.WithUrlEncoder(JWT.IBase64UrlEncoder)">
            <summary>
            Sets custom URL encoder.
            </summary>
            <remarks>
            If not set then default <see cref="T:JWT.JwtBase64UrlEncoder" /> will be used.
            </remarks>
            <returns>Current builder instance</returns>
        </member>
        <member name="M:JWT.Builder.JwtBuilder.WithAlgorithmFactory(JWT.Algorithms.IAlgorithmFactory)">
            <summary>
            Sets JWT algorithm factory.
            </summary>
            <returns>Current builder instance.</returns>
        </member>
        <member name="M:JWT.Builder.JwtBuilder.WithAlgorithm(JWT.Algorithms.IJwtAlgorithm)">
            <summary>
            Sets JWT algorithm.
            </summary>
            <returns>Current builder instance.</returns>
        </member>
        <member name="M:JWT.Builder.JwtBuilder.WithSecret(System.String[])">
            <summary>
            Sets secrets.
            </summary>
            <remarks>
            Required to create a new token that uses an symmetric algorithm such as <seealso cref="T:JWT.Algorithms.RS256Algorithm" />
            </remarks>
            <returns>Current builder instance</returns>
        </member>
        <member name="M:JWT.Builder.JwtBuilder.WithSecret(System.Byte[][])">
            <summary>
            Sets secrets.
            </summary>
            <remarks>
            Required to create a new token that uses an symmetric algorithm such as <seealso cref="T:JWT.Algorithms.RS256Algorithm" />
            </remarks>
            <returns>Current builder instance</returns>
        </member>
        <member name="M:JWT.Builder.JwtBuilder.MustVerifySignature">
            <summary>
            Instructs to verify the JWT signature.
            </summary>
            <returns>Current builder instance</returns>
        </member>
        <member name="M:JWT.Builder.JwtBuilder.DoNotVerifySignature">
            <summary>
            Instructs to do not verify the JWT signature.
            </summary>
            <returns>Current builder instance</returns>
        </member>
        <member name="M:JWT.Builder.JwtBuilder.WithVerifySignature(System.Boolean)">
            <summary>
            Instructs whether to verify the JWT signature.
            </summary>
            <returns>Current builder instance</returns>
        </member>
        <member name="M:JWT.Builder.JwtBuilder.WithValidationParameters(JWT.ValidationParameters)">
            <summary>
            Sets the JWT signature validation parameters.
            </summary>
            <param name="valParams">Parameters to be used for validation</param>
            <exception cref="T:System.ArgumentNullException" />
            <returns>Current builder instance</returns>
        </member>
        <member name="M:JWT.Builder.JwtBuilder.WithValidationParameters(System.Action{JWT.ValidationParameters})">
            <summary>
            Sets the JWT signature validation parameters.
            </summary>
            <param name="action">Delegate to produce parameters to be used for validation</param>
            <exception cref="T:System.ArgumentNullException" />
            <returns>Current builder instance</returns>
        </member>
        <member name="M:JWT.Builder.JwtBuilder.Encode">
            <summary>
            Encodes a token using the supplied dependencies.
            </summary>
            <returns>The generated JWT</returns>
            <exception cref="T:System.InvalidOperationException" />
            <returns>Current builder instance</returns>
        </member>
        <member name="M:JWT.Builder.JwtBuilder.Decode(System.String)">
            <summary>
            Decodes a token using the supplied dependencies.
            </summary>
            <param name="token">The JWT</param>
            <returns>The JSON payload</returns>
        </member>
        <member name="M:JWT.Builder.JwtBuilder.DecodeHeader(System.String)">
            <summary>
            Given a JWT, decodes it and return the header.
            </summary>
            <param name="token">The JWT</param>
        </member>
        <member name="M:JWT.Builder.JwtBuilder.DecodeHeader``1(System.String)">
            <summary>
            Given a JWT, decodes it and return the header.
            </summary>
            <param name="token">The JWT</param>
        </member>
        <member name="M:JWT.Builder.JwtBuilder.Decode``1(System.String)">
            <summary>
            Decodes a token using the supplied dependencies.
            </summary>
            <param name="token">The JWT</param>
        </member>
        <member name="M:JWT.Builder.JwtBuilder.CanEncode">
            <summary>
            Checks whether enough dependencies were supplied to encode a new token.
            </summary>
        </member>
        <member name="M:JWT.Builder.JwtBuilder.CanDecode">
            <summary>
            Checks whether enough dependencies were supplied to decode a token.
            </summary>
        </member>
        <member name="M:JWT.Builder.JwtBuilderExtensions.AddClaim(JWT.Builder.JwtBuilder,JWT.Builder.ClaimName,System.Object)">
            <summary>
            Adds well-known claim to the JWT.
            </summary>
        </member>
        <member name="M:JWT.Builder.JwtBuilderExtensions.AddClaim``1(JWT.Builder.JwtBuilder,JWT.Builder.ClaimName,``0)">
            <summary>
            Adds well-known claim to the JWT.
            </summary>
        </member>
        <member name="M:JWT.Builder.JwtBuilderExtensions.AddClaim``1(JWT.Builder.JwtBuilder,System.String,``0)">
            <summary>
            Adds well-known claim to the JWT.
            </summary>
        </member>
        <member name="M:JWT.Builder.JwtBuilderExtensions.AddClaims(JWT.Builder.JwtBuilder,System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.Object}})">
            <summary>
            Adds several claims to the JWT
            </summary>
        </member>
        <member name="T:JWT.Builder.JwtData">
            <summary>
            Represents the Data that will store in a JWT.
            </summary>
        </member>
        <member name="M:JWT.Builder.JwtData.#ctor">
            <summary>
            Creates a new instance of <see cref="T:JWT.Builder.JwtData" /> with empty Header and Payload.
            </summary>
        </member>
        <member name="M:JWT.Builder.JwtData.#ctor(System.Collections.Generic.IDictionary{System.String,System.Object})">
            <summary>
            Creates a new instance of <see cref="T:JWT.Builder.JwtData" />
            </summary>
            <param name="payload">Dictionary that contains the payload</param>
        </member>
        <member name="M:JWT.Builder.JwtData.#ctor(System.Collections.Generic.IDictionary{System.String,System.Object},System.Collections.Generic.IDictionary{System.String,System.Object})">
            <summary>
            Creates a new instance of <see cref="T:JWT.Builder.JwtData" />
            </summary>
            <param name="header">Dictionary that contains the headers</param>
            <param name="payload">Dictionary that contains the payload</param>
        </member>
        <member name="M:JWT.Builder.JwtData.#ctor(System.String)">
            <summary>
            Creates a new instance of <see cref="T:JWT.Builder.JwtData" />
            </summary>
            <param name="token">The JWT token</param>
        </member>
        <member name="P:JWT.Builder.JwtData.Header">
            <summary>
            The header information as a key-value store of the JWT
            </summary>
        </member>
        <member name="P:JWT.Builder.JwtData.Payload">
            <summary>
            The payload of the JWT as a key-value store
            </summary>
        </member>
        <member name="T:JWT.Builder.JwtHeader">
            <summary>
            JSON header model with predefined parameter names specified by RFC 7515, see https://tools.ietf.org/html/rfc7515
            </summary>
        </member>
        <member name="T:JWT.Exceptions.InvalidTokenPartsException">
            <summary>
            Represents an exception thrown when a token doesn't consist of 3 delimited by dot parts.
            </summary>
        </member>
        <member name="M:JWT.Exceptions.InvalidTokenPartsException.#ctor(System.String)">
            <summary>
            Creates an instance of <see cref="T:JWT.Exceptions.InvalidTokenPartsException" />
            </summary>
            <param name="paramName">The name of the parameter that caused the exception</param>
        </member>
        <member name="T:JWT.Exceptions.SignatureVerificationException">
            <summary>
            Represents an exception thrown when a signature validation fails.
            </summary>
        </member>
        <member name="M:JWT.Exceptions.SignatureVerificationException.#ctor(System.String)">
            <summary>
            Creates an instance of <see cref="T:JWT.Exceptions.SignatureVerificationException" />
            </summary>
            <param name="message">The error message</param>
        </member>
        <member name="P:JWT.Exceptions.SignatureVerificationException.Expected">
            <summary>
            Expected key.
            </summary>
        </member>
        <member name="P:JWT.Exceptions.SignatureVerificationException.Received">
            <summary>
            Received key.
            </summary>
        </member>
        <member name="M:JWT.Exceptions.SignatureVerificationException.GetOrDefault``1(System.String)">
            <summary>
            Retrieves the value for the provided key, or default.
            </summary>
            <typeparam name="T"></typeparam>
            <param name="key">The key</param>
            <returns></returns>
        </member>
        <member name="T:JWT.Exceptions.TokenExpiredException">
            <summary>
            Represents an exception thrown when when a token is expired.
            </summary>
        </member>
        <member name="M:JWT.Exceptions.TokenExpiredException.#ctor(System.String)">
            <summary>
            Creates an instance of <see cref="T:JWT.Exceptions.TokenExpiredException" />
            </summary>
            <param name="message">The error message</param>
        </member>
        <member name="P:JWT.Exceptions.TokenExpiredException.PayloadData">
            <summary>
            The payload.
            </summary>
        </member>
        <member name="P:JWT.Exceptions.TokenExpiredException.Expiration">
            <summary>
            The expiration DateTime of the token.
            </summary>
        </member>
        <member name="T:JWT.Exceptions.TokenNotYetValidException">
            <summary>
            Represents an exception thrown when a token is not yet valid.
            </summary>
        </member>
        <member name="M:JWT.Exceptions.TokenNotYetValidException.#ctor(System.String)">
            <summary>
            Creates an instance of <see cref="T:JWT.Exceptions.TokenNotYetValidException" />
            </summary>
            <param name="message">The error message</param>
        </member>
        <member name="P:JWT.Exceptions.TokenNotYetValidException.PayloadData">
            <summary>
            The payload.
            </summary>
        </member>
        <member name="P:JWT.Exceptions.TokenNotYetValidException.NotBefore">
            <summary>
            The not before DateTime of the token.
            </summary>
        </member>
        <member name="T:JWT.IBase64UrlEncoder">
            <summary>
            Represents a base64 encoder/decoder.
            </summary>
        </member>
        <member name="M:JWT.IBase64UrlEncoder.Encode(System.Byte[])">
            <summary>
            Encodes the byte array to a base64 string.
            </summary>
        </member>
        <member name="M:JWT.IBase64UrlEncoder.Decode(System.String)">
            <summary>
            Decodes the base64 string to a byte array.
            </summary>
        </member>
        <member name="T:JWT.IDateTimeProvider">
            <summary>
            Represents a DateTime provider.
            </summary>
        </member>
        <member name="M:JWT.IDateTimeProvider.GetNow">
            <summary>
            Gets the current DateTime.
            </summary>
        </member>
        <member name="T:JWT.IJsonSerializer">
            <summary>
            Provides JSON Serialize and Deserialize. Allows custom serializers used.
            </summary>
        </member>
        <member name="M:JWT.IJsonSerializer.Serialize(System.Object)">
            <summary>
            Serializes an object to a JSON string.
            </summary>
            <param name="obj">The object to serialize.</param>
            <returns>JSON string</returns>
        </member>
        <member name="M:JWT.IJsonSerializer.Deserialize(System.Type,System.String)">
            <summary>
            Deserializes a JSON string to an object of specified type.
            </summary>
            <param name="type">The type of the object to deserialize to.</param>
            <param name="json">The JSON string deserialize.</param>
            <returns>Strongly-typed object.</returns>
        </member>
        <member name="T:JWT.JsonSerializerExtensions">
             <summary>
             Extension methods for <seealso cref="T:JWT.IJsonSerializer" />
            </summary>
        </member>
        <member name="M:JWT.JsonSerializerExtensions.Deserialize``1(JWT.IJsonSerializer,System.String)">
            <summary>
            Deserializes a JSON string to an object of specified type.
            </summary>
            <typeparam name="T">The type of the object to deserialize to.</typeparam>
            <param name="jsonSerializer">The JSON serializer instance.</param>
            <param name="json">JSON string</param>
            <returns>Strongly-typed object.</returns>
        </member>
        <member name="T:JWT.IJwtDecoder">
            <summary>
            Represents a JWT decoder.
            </summary>
        </member>
        <member name="M:JWT.IJwtDecoder.DecodeHeader(System.String)">
            <summary>
            Given a JWT, decodes it and return the header.
            </summary>
            <param name="token">The JWT</param>
        </member>
        <member name="M:JWT.IJwtDecoder.DecodeHeader``1(JWT.JwtParts)">
            <summary>
            Given a JWT, decodes it and return the header as an object.
            </summary>
            <param name="jwt">The JWT</param>
        </member>
        <member name="M:JWT.IJwtDecoder.Decode(JWT.JwtParts,System.Boolean)">
            <summary>
            Given a JWT, decodes it and return the payload.
            </summary>
            <param name="jwt">The JWT</param>
            <param name="verify">Whether to verify the signature (default is true)</param>
            <returns>A string containing the JSON payload</returns>
        </member>
        <member name="M:JWT.IJwtDecoder.Decode(JWT.JwtParts,System.Byte[],System.Boolean)">
            <summary>
            Given a JWT, decodes it and return the payload.
            </summary>
            <param name="jwt">The JWT</param>
            <param name="key">The key that were used to sign the JWT</param>
            <param name="verify">Whether to verify the signature (default is true)</param>
            <returns>A string containing the JSON payload</returns>
        </member>
        <member name="M:JWT.IJwtDecoder.Decode(JWT.JwtParts,System.Byte[][],System.Boolean)">
            <summary>
            Given a JWT, decodes it and return the payload.
            </summary>
            <param name="jwt">The JWT</param>
            <param name="keys">The keys provided which one of them was used to sign the JWT</param>
            <param name="verify">Whether to verify the signature (default is true)</param>
            <returns>A string containing the JSON payload</returns>
        </member>
        <member name="M:JWT.IJwtDecoder.DecodeToObject(System.Type,JWT.JwtParts,System.Boolean)">
            <summary>
            Given a JWT, decodes it and return the payload as an object.
            </summary>
            <param name="type">The type to deserialize to.</param>
            <param name="jwt">The JWT</param>
            <param name="verify">Whether to verify the signature (default is true)</param>
            <returns>An object representing the payload</returns>
        </member>
        <member name="M:JWT.IJwtDecoder.DecodeToObject(System.Type,JWT.JwtParts,System.Byte[],System.Boolean)">
            <summary>
            Given a JWT, decodes it and return the payload as an object.
            </summary>
            <param name="type">The type to deserialize to.</param>
            <param name="jwt">The JWT</param>
            <param name="key">The key that was used to sign the JWT</param>
            <param name="verify">Whether to verify the signature (default is true)</param>
            <returns>An object representing the payload</returns>
        </member>
        <member name="M:JWT.IJwtDecoder.DecodeToObject(System.Type,JWT.JwtParts,System.Byte[][],System.Boolean)">
            <summary>
            Given a JWT, decodes it and return the payload as an object.
            </summary>
            <param name="type">The type to deserialize to.</param>
            <param name="jwt">The JWT</param>
            <param name="keys">The keys which one of them was used to sign the JWT</param>
            <param name="verify">Whether to verify the signature (default is true)</param>
            <returns>An object representing the payload</returns>
        </member>
        <member name="T:JWT.JwtDecoderExtensions">
             <summary>
             Extension methods for <seealso cref="T:JWT.IJwtDecoder" />>
            </summary>
        </member>
        <member name="M:JWT.JwtDecoderExtensions.Decode(JWT.IJwtDecoder,System.String,System.Boolean)">
            <summary>
            Given a JWT, decodes it and return the payload.
            </summary>
            <param name="decoder">The decoder instance</param>
            <param name="token">The JWT</param>
            <param name="verify">Whether to verify the signature (default is <c>true</c>)</param>
            <returns>A string containing the JSON payload</returns>
            <exception cref="T:System.ArgumentException" />
            <exception cref="T:System.ArgumentOutOfRangeException" />
            <exception cref="T:JWT.Exceptions.InvalidTokenPartsException" />
        </member>
        <member name="M:JWT.JwtDecoderExtensions.Decode(JWT.IJwtDecoder,System.String,System.Byte[],System.Boolean)">
            <summary>
            Given a JWT, decodes it, and return the payload.
            </summary>
            <param name="decoder">The decoder instance</param>
            <param name="token">The JWT</param>
            <param name="key">The key that was used to sign the JWT</param>
            <param name="verify">Whether to verify the signature (default is <c>true</c>)</param>
            <returns>A string containing the JSON payload</returns>
            <exception cref="T:System.ArgumentException" />
            <exception cref="T:System.ArgumentOutOfRangeException" />
            <exception cref="T:JWT.Exceptions.InvalidTokenPartsException" />
        </member>
        <member name="M:JWT.JwtDecoderExtensions.Decode(JWT.IJwtDecoder,System.String,System.Byte[][],System.Boolean)">
            <summary>
            Given a JWT, decodes it, and return the payload.
            </summary>
            <param name="decoder">The decoder instance</param>
            <param name="token">The JWT</param>
            <param name="keys">The keys that were used to sign the JWT</param>
            <param name="verify">Whether to verify the signature (default is <c>true</c>)</param>
            <returns>A string containing the JSON payload</returns>
            <exception cref="T:System.ArgumentException" />
            <exception cref="T:System.ArgumentOutOfRangeException" />
            <exception cref="T:JWT.Exceptions.InvalidTokenPartsException" />
        </member>
        <member name="M:JWT.JwtDecoderExtensions.Decode(JWT.IJwtDecoder,System.String,System.String,System.Boolean)">
            <summary>
            Given a JWT, decodes it, and return the payload as an dictionary.
            </summary>
            <param name="decoder">The decoder instance</param>
            <param name="token">The JWT</param>
            <param name="key">The key that was used to sign the JWT</param>
            <param name="verify">Whether to verify the signature (default is <c>true</c>)</param>
            <returns>An object representing the payload</returns>
            <exception cref="T:System.ArgumentException" />
            <exception cref="T:System.ArgumentOutOfRangeException" />
        </member>
        <member name="M:JWT.JwtDecoderExtensions.Decode(JWT.IJwtDecoder,System.String,System.String[],System.Boolean)">
            <summary>
            Given a JWT, decodes it, and return the payload as an dictionary.
            </summary>
            <param name="decoder">The decoder instance</param>
            <param name="token">The JWT</param>
            <param name="keys">The key which one of them was used to sign the JWT</param>
            <param name="verify">Whether to verify the signature (default is <c>true</c>)</param>
            <returns>An object representing the payload</returns>
            <exception cref="T:System.ArgumentException" />
            <exception cref="T:System.ArgumentOutOfRangeException" />
        </member>
        <member name="M:JWT.JwtDecoderExtensions.DecodeToObject(JWT.IJwtDecoder,System.String,System.Boolean)">
            <summary>
            Given a JWT, decodes it and return the payload as a dictionary.
            </summary>
            <param name="decoder">The decoder instance</param>
            <param name="token">The JWT</param>
            <param name="verify">Whether to verify the signature (default is <c>true</c>)</param>
            <returns>An object representing the payload</returns>
        </member>
        <member name="M:JWT.JwtDecoderExtensions.DecodeToObject(JWT.IJwtDecoder,System.String,System.String,System.Boolean)">
            <summary>
            Given a JWT, decodes it and return the payload as a dictionary.
            </summary>
            <param name="decoder">The decoder instance</param>
            <param name="token">The JWT</param>
            <param name="key">The key that was used to sign the JWT</param>
            <param name="verify">Whether to verify the signature (default is <c>true</c>)</param>
            <returns>An object representing the payload</returns>
        </member>
        <member name="M:JWT.JwtDecoderExtensions.DecodeToObject(JWT.IJwtDecoder,System.String,System.String[],System.Boolean)">
            <summary>
            Given a JWT, decodes it and return the payload as a dictionary.
            </summary>
            <param name="decoder">The decoder instance</param>
            <param name="token">The JWT</param>
            <param name="keys">The keys provided which one of them was used to sign the JWT</param>
            <param name="verify">Whether to verify the signature (default is <c>true</c>)</param>
            <returns>An object representing the payload</returns>
        </member>
        <member name="M:JWT.JwtDecoderExtensions.DecodeToObject(JWT.IJwtDecoder,System.String,System.Byte[],System.Boolean)">
            <summary>
            Given a JWT, decodes it and return the payload as a dictionary.
            </summary>
            <param name="decoder">The decoder instance</param>
            <param name="token">The JWT</param>
            <param name="key">The key that was used to sign the JWT</param>
            <param name="verify">Whether to verify the signature (default is <c>true</c>)</param>
            <returns>An object representing the payload</returns>
            <exception cref = "T:System.ArgumentException" />
            <exception cref="T:System.ArgumentOutOfRangeException" />
            <exception cref="T:JWT.Exceptions.InvalidTokenPartsException" />
        </member>
        <member name="M:JWT.JwtDecoderExtensions.DecodeToObject(JWT.IJwtDecoder,System.String,System.Byte[][],System.Boolean)">
            <summary>
            Given a JWT, decodes it and return the payload as a dictionary.
            </summary>
            <param name="decoder">The decoder instance</param>
            <param name="token">The JWT</param>
            <param name="keys">The keys that were used to sign the JWT</param>
            <param name="verify">Whether to verify the signature (default is <c>true</c>)</param>
            <returns>A string containing the JSON payload</returns>
            <exception cref="T:System.ArgumentException" />
            <exception cref="T:System.ArgumentOutOfRangeException" />
            <exception cref="T:JWT.Exceptions.InvalidTokenPartsException" />
        </member>
        <member name="M:JWT.JwtDecoderExtensions.DecodeToObject(JWT.IJwtDecoder,System.Type,System.String,System.Byte[],System.Boolean)">
            <summary>
            Given a JWT, decodes it and return the payload as a dictionary.
            </summary>
            <param name="decoder">The decoder instance</param>
            <param name="type">The type to deserialize to.</param>
            <param name="token">The JWT</param>
            <param name="key">The key that was used to sign the JWT</param>
            <param name="verify">Whether to verify the signature (default is <c>true</c>)</param>
            <returns>An object representing the payload</returns>
            <exception cref = "T:System.ArgumentException" />
            <exception cref="T:System.ArgumentOutOfRangeException" />
            <exception cref="T:JWT.Exceptions.InvalidTokenPartsException" />
        </member>
        <member name="M:JWT.JwtDecoderExtensions.DecodeToObject(JWT.IJwtDecoder,System.Type,System.String,System.Byte[][],System.Boolean)">
            <summary>
            Given a JWT, decodes it and return the payload as a dictionary.
            </summary>
            <param name="decoder">The decoder instance</param>
            <param name="type">The type to deserialize to.</param>
            <param name="token">The JWT</param>
            <param name="keys">The keys that were used to sign the JWT</param>
            <param name="verify">Whether to verify the signature (default is <c>true</c>)</param>
            <returns>A string containing the JSON payload</returns>
            <exception cref="T:System.ArgumentException" />
            <exception cref="T:System.ArgumentOutOfRangeException" />
            <exception cref="T:JWT.Exceptions.InvalidTokenPartsException" />
        </member>
        <member name="M:JWT.JwtDecoderExtensions.DecodeToObject(JWT.IJwtDecoder,System.Type,System.String,System.String,System.Boolean)">
            <summary>
            Given a JWT, decodes it and return the payload as an dictionary.
            </summary>
            <param name="decoder">The decoder instance</param>
            <param name="type">The type to deserialize to.</param>
            <param name="token">The JWT</param>
            <param name="key">The key that was used to sign the JWT</param>
            <param name="verify">Whether to verify the signature (default is <c>true</c>)</param>
            <returns>An object representing the payload</returns>
            <exception cref="T:System.ArgumentException" />
            <exception cref="T:System.ArgumentOutOfRangeException" />
        </member>
        <member name="M:JWT.JwtDecoderExtensions.DecodeToObject(JWT.IJwtDecoder,System.Type,System.String,System.String[],System.Boolean)">
            <summary>
            Given a JWT, decodes it and return the payload as an dictionary.
            </summary>
            <param name="decoder">The decoder instance</param>
            <param name="type">The type to deserialize to.</param>
            <param name="token">The JWT</param>
            <param name="keys">The key which one of them was used to sign the JWT</param>
            <param name="verify">Whether to verify the signature (default is <c>true</c>)</param>
            <returns>An object representing the payload</returns>
            <exception cref="T:System.ArgumentException" />
            <exception cref="T:System.ArgumentOutOfRangeException" />
        </member>
        <member name="M:JWT.JwtDecoderExtensions.DecodeToObject``1(JWT.IJwtDecoder,JWT.JwtParts,System.Boolean)">
            <summary>
            Given a JWT, decodes it and return the payload as an object.
            </summary>
            <typeparam name="T">The type to deserialize to.</typeparam>
            <param name="decoder">The decoder instance</param>
            <param name="jwt">The JWT</param>
            <param name="verify">Whether to verify the signature (default is <c>true</c>)</param>
            <returns>An object representing the payload</returns>
        </member>
        <member name="M:JWT.JwtDecoderExtensions.DecodeToObject``1(JWT.IJwtDecoder,JWT.JwtParts,System.Byte[],System.Boolean)">
            <summary>
            Given a JWT, decodes it and return the payload as an object.
            </summary>
            <typeparam name="T">The type to deserialize to.</typeparam>
            <param name="decoder">The decoder instance</param>
            <param name="jwt">The JWT</param>
            <param name="key">The key that was used to sign the JWT</param>
            <param name="verify">Whether to verify the signature (default is <c>true</c>)</param>
            <returns>An object representing the payload</returns>
        </member>
        <member name="M:JWT.JwtDecoderExtensions.DecodeToObject``1(JWT.IJwtDecoder,JWT.JwtParts,System.Byte[][],System.Boolean)">
            <summary>
            Given a JWT, decodes it and return the payload as an object.
            </summary>
            <typeparam name="T">The type to deserialize to.</typeparam>
            <param name="decoder">The decoder instance</param>
            <param name="jwt">The JWT</param>
            <param name="keys">The keys which one of them was used to sign the JWT</param>
            <param name="verify">Whether to verify the signature (default is <c>true</c>)</param>
            <returns>An object representing the payload</returns>
        </member>
        <member name="M:JWT.JwtDecoderExtensions.DecodeToObject``1(JWT.IJwtDecoder,System.String)">
            <summary>
            Given a JWT, decodes it and return the payload as an object.
            </summary>
            <typeparam name="T">The type to return</typeparam>
            <param name="decoder">The decoder instance</param>
            <param name="token">The JWT</param>
            <returns>An object representing the payload</returns>
        </member>
        <member name="M:JWT.JwtDecoderExtensions.DecodeToObject``1(JWT.IJwtDecoder,System.String,System.String,System.Boolean)">
            <summary>
            Given a JWT, decodes it and return the payload as an object.
            </summary>
            <typeparam name="T">The type to return</typeparam>
            <param name="decoder">The decoder instance</param>
            <param name="token">The JWT</param>
            <param name="key">The key that was used to sign the JWT</param>
            <param name="verify">Whether to verify the signature (default is <c>true</c>)</param>
            <returns>An object representing the payload</returns>
        </member>
        <member name="M:JWT.JwtDecoderExtensions.DecodeToObject``1(JWT.IJwtDecoder,System.String,System.Byte[],System.Boolean)">
            <summary>
            Given a JWT, decodes it and return the payload as an object.
            </summary>
            <typeparam name="T">The type to return</typeparam>
            <param name="decoder">The decoder instance</param>
            <param name="token">The JWT</param>
            <param name="key">The key that was used to sign the JWT</param>
            <param name="verify">Whether to verify the signature (default is <c>true</c>)</param>
            <returns>An object representing the payload</returns>
        </member>
        <member name="M:JWT.JwtDecoderExtensions.DecodeToObject``1(JWT.IJwtDecoder,System.String,System.Byte[][],System.Boolean)">
            <summary>
            Given a JWT, decodes it and return the payload as an object.
            </summary>
            <typeparam name="T">The type to return</typeparam>
            <param name="decoder">The decoder instance</param>
            <param name="token">The JWT</param>
            <param name="keys">The keys provided which one of them was used to sign the JWT</param>
            <param name="verify">Whether to verify the signature (default is <c>true</c>)</param>
            <returns>An object representing the payload</returns>
        </member>
        <member name="M:JWT.JwtDecoderExtensions.DecodeToObject``1(JWT.IJwtDecoder,System.String,System.String[],System.Boolean)">
            <summary>
            Given a JWT, decodes it and return the payload as an object.
            </summary>
            <typeparam name="T">The type to return</typeparam>
            <param name="decoder">The decoder instance</param>
            <param name="token">The JWT</param>
            <param name="keys">The keys provided which one of them was used to sign the JWT</param>
            <param name="verify">Whether to verify the signature (default is <c>true</c>)</param>
            <returns>An object representing the payload</returns>
        </member>
        <member name="T:JWT.IJwtEncoder">
            <summary>
            Represents a JWT encoder.
            </summary>
        </member>
        <member name="M:JWT.IJwtEncoder.Encode(System.Collections.Generic.IDictionary{System.String,System.Object},System.Object,System.Byte[])">
            <summary>
            Creates a JWT given a header, a payload, the signing key, and the algorithm to use.
            </summary>
            <param name="extraHeaders">An arbitrary set of extra headers. Will be augmented with the standard "typ" and "alg" headers</param>
            <param name="payload">An arbitrary payload (must be serializable to JSON)</param>
            <param name="key">The key bytes used to sign the token</param>
            <returns>The generated JWT</returns>
        </member>
        <member name="T:JWT.JwtEncoderExtensions">
             <summary>
             Extension methods for <seealso cref="T:JWT.IJwtEncoder" />
            </summary>
        </member>
        <member name="M:JWT.JwtEncoderExtensions.Encode(JWT.IJwtEncoder,System.Object,System.String)">
            <summary>
            Creates a JWT given a payload, the signing key, and the algorithm to use.
            </summary>
            <param name="encoder">The encoder instance</param>
            <param name="payload">An arbitrary payload (must be serializable to JSON)</param>
            <param name="key">The key used to sign the token</param>
            <returns>The generated JWT</returns>
            <exception cref="T:System.ArgumentNullException" />
        </member>
        <member name="M:JWT.JwtEncoderExtensions.Encode(JWT.IJwtEncoder,System.Object,System.Byte[])">
            <summary>
            Creates a JWT given a payload, the signing key, and the algorithm to use.
            </summary>
            <param name="encoder">The encoder instance</param>
            <param name="payload">An arbitrary payload (must be serializable to JSON)</param>
            <param name="key">The key used to sign the token</param>
            <returns>The generated JWT</returns>
            <exception cref="T:System.ArgumentNullException" />
        </member>
        <member name="M:JWT.JwtEncoderExtensions.Encode(JWT.IJwtEncoder,System.Collections.Generic.IDictionary{System.String,System.Object},System.Object,System.String)">
            <summary>
            Creates a JWT given a set of arbitrary extra headers, a payload, the signing key, and the algorithm to use.
            </summary>
            <param name="encoder">The encoder instance</param>
            <param name="extraHeaders">An arbitrary set of extra headers. Will be augmented with the standard "typ" and "alg" headers</param>
            <param name="payload">An arbitrary payload (must be serializable to JSON)</param>
            <param name="key">The key bytes used to sign the token</param>
            <returns>The generated JWT</returns>
            <exception cref="T:System.ArgumentNullException" />
        </member>
        <member name="T:JWT.IJwtValidator">
            <summary>
            Represents a JWT validator.
            </summary>
        </member>
        <member name="M:JWT.IJwtValidator.Validate(System.String,System.String,System.String[])">
            <summary>
            Given the JWT, verifies its signature correctness.
            </summary>
            <param name="decodedPayload">>An arbitrary payload (already serialized to JSON)</param>
            <param name="signature">Decoded body</param>
            <param name="decodedSignatures">The signatures to validate with</param>
        </member>
        <member name="M:JWT.IJwtValidator.Validate(System.String,JWT.Algorithms.IAsymmetricAlgorithm,System.Byte[],System.Byte[])">
            <summary>
            Given the JWT, verifies its signature correctness.
            </summary>
            <remarks>
            Used by the asymmetric algorithms only.
            </remarks>
            <param name="decodedPayload">>An arbitrary payload (already serialized to JSON)</param>
            <param name="alg">The asymmetric algorithm to validate with</param>
            <param name="bytesToSign">The header and payload bytes to validate</param>
            <param name="decodedSignature">The signature to validate with</param>
        </member>
        <member name="M:JWT.IJwtValidator.TryValidate(System.String,System.String,System.String,System.Exception@)">
            <summary>
            Given the JWT, verifies its signature correctness without throwing an exception but returning it instead.
            </summary>
            <param name="payloadJson">>An arbitrary payload (already serialized to JSON)</param>
            <param name="signature">Decoded body</param>
            <param name="decodedSignature">The signature to validate with</param>
            <param name="ex">The resulting validation exception, if any</param>
            <returns>Returns <c>true</c> if exception is JWT is valid and exception is null, otherwise false</returns>
        </member>
        <member name="M:JWT.IJwtValidator.TryValidate(System.String,System.String,System.String[],System.Exception@)">
            <summary>
            Given the JWT, verifies its signature correctness without throwing an exception but returning it instead.
            </summary>
            <param name="payloadJson">>An arbitrary payload (already serialized to JSON)</param>
            <param name="signature">Decoded body</param>
            <param name="decodedSignature">The signatures to validate with</param>
            <param name="ex">The resulting validation exception, if any</param>
            <returns>Returns <c>true</c> if exception is JWT is valid and exception is null, otherwise false</returns>
        </member>
        <member name="M:JWT.IJwtValidator.TryValidate(System.String,JWT.Algorithms.IAsymmetricAlgorithm,System.Byte[],System.Byte[],System.Exception@)">
            <summary>
            Given the JWT, verifies its signatures correctness without throwing an exception but returning it instead.
            </summary>
            <param name="payloadJson">>An arbitrary payload (already serialized to JSON)</param>
            <param name="alg">The asymmetric algorithm to validate with</param>
            <param name="bytesToSign">The header and payload bytes to validate</param>
            <param name="decodedSignature">The decodedSignatures to validate with</param>
            <param name="ex">Validation exception, if any</param>
            <returns>True if exception is JWT is valid and exception is null, otherwise false</returns>
        </member>
        <member name="T:JWT.JwtBase64UrlEncoder">
            <summary>
            base64 encoding/decoding implementation according to the JWT spec
            </summary>
        </member>
        <member name="M:JWT.JwtBase64UrlEncoder.Encode(System.Byte[])">
            <inheritdoc />
            <exception cref="T:System.ArgumentNullException" />
            <exception cref="T:System.ArgumentOutOfRangeException" />
        </member>
        <member name="M:JWT.JwtBase64UrlEncoder.Decode(System.String)">
            <inheritdoc />
            <exception cref="T:System.ArgumentException" />
            <exception cref="T:System.FormatException" />
        </member>
        <member name="T:JWT.JwtDecoder">
            <summary>
            Decodes JWT.
            </summary>
        </member>
        <member name="M:JWT.JwtDecoder.#ctor(JWT.IJsonSerializer,JWT.IBase64UrlEncoder)">
            <summary>
            Creates an instance of <see cref="T:JWT.JwtDecoder" />
            </summary>
            <remarks>
            This overload supplies no <see cref="T:JWT.IJwtValidator" /> and no <see cref="T:JWT.Algorithms.IAlgorithmFactory" /> so the resulting decoder cannot be used for signature validation.
            </remarks>
            <param name="jsonSerializer">The JSON serializer</param>
            <param name="urlEncoder">The base64 URL encoder</param>
            <exception cref="T:System.ArgumentNullException" />
        </member>
        <member name="M:JWT.JwtDecoder.#ctor(JWT.IJsonSerializer,JWT.IJwtValidator,JWT.IBase64UrlEncoder,JWT.Algorithms.IAlgorithmFactory)">
            <summary>
            Creates an instance of <see cref="T:JWT.JwtDecoder" />
            </summary>
            <param name="jsonSerializer">The JSON serializer</param>
            <param name="jwtValidator">The JWT validator</param>
            <param name="urlEncoder">The base64 URL encoder</param>
            <param name="algFactory">The JWT algorithm Factory</param>
            <exception cref="T:System.ArgumentNullException" />
        </member>
        <member name="M:JWT.JwtDecoder.#ctor(JWT.IJsonSerializer,JWT.IJwtValidator,JWT.IBase64UrlEncoder,JWT.Algorithms.IJwtAlgorithm)">
            <summary>
            Creates an instance of <see cref="T:JWT.JwtDecoder" />
            </summary>
            <param name="jsonSerializer">The JSON serializer</param>
            <param name="jwtValidator">The JWT validator</param>
            <param name="urlEncoder">The base64 URL encoder</param>
            <param name="algorithm">The JWT algorithm</param>
            <exception cref="T:System.ArgumentNullException" />
        </member>
        <member name="M:JWT.JwtDecoder.DecodeHeader(System.String)">
            <inheritdoc />
            <exception cref="T:System.ArgumentException" />
            <exception cref="T:JWT.Exceptions.InvalidTokenPartsException" />
            <exception cref="T:System.FormatException" />
        </member>
        <member name="M:JWT.JwtDecoder.DecodeHeader``1(JWT.JwtParts)">
            <inheritdoc />
            <exception cref="T:System.ArgumentException" />
            <exception cref="T:System.ArgumentNullException" />
            <exception cref="T:System.FormatException" />
        </member>
        <member name="M:JWT.JwtDecoder.Decode(JWT.JwtParts,System.Boolean)">
            <inheritdoc />
            <exception cref="T:System.ArgumentException" />
            <exception cref="T:System.ArgumentNullException" />
            <exception cref="T:System.ArgumentOutOfRangeException" />
            <exception cref="T:JWT.Exceptions.InvalidTokenPartsException" />
            <exception cref="T:System.FormatException" />
            <exception cref="T:JWT.Exceptions.SignatureVerificationException" />
            <exception cref="T:JWT.Exceptions.TokenNotYetValidException" />
            <exception cref="T:JWT.Exceptions.TokenExpiredException" />
        </member>
        <member name="M:JWT.JwtDecoder.Decode(JWT.JwtParts,System.Byte[],System.Boolean)">
            <inheritdoc />
            <exception cref="T:System.ArgumentException" />
            <exception cref="T:System.ArgumentNullException" />
            <exception cref="T:System.ArgumentOutOfRangeException" />
            <exception cref="T:JWT.Exceptions.InvalidTokenPartsException" />
            <exception cref="T:System.FormatException" />
            <exception cref="T:JWT.Exceptions.SignatureVerificationException" />
            <exception cref="T:JWT.Exceptions.TokenNotYetValidException" />
            <exception cref="T:JWT.Exceptions.TokenExpiredException" />
        </member>
        <member name="M:JWT.JwtDecoder.Decode(JWT.JwtParts,System.Byte[][],System.Boolean)">
            <inheritdoc />
            <exception cref="T:System.ArgumentException" />
            <exception cref="T:System.ArgumentNullException" />
            <exception cref="T:System.ArgumentOutOfRangeException" />
            <exception cref="T:System.FormatException" />
            <exception cref="T:JWT.Exceptions.SignatureVerificationException" />
            <exception cref="T:JWT.Exceptions.TokenNotYetValidException" />
            <exception cref="T:JWT.Exceptions.TokenExpiredException" />
        </member>
        <member name="M:JWT.JwtDecoder.DecodeToObject(System.Type,JWT.JwtParts,System.Boolean)">
            <inheritdoc />
            <exception cref="T:System.ArgumentException" />
            <exception cref="T:System.ArgumentNullException" />
            <exception cref="T:System.ArgumentOutOfRangeException" />
            <exception cref="T:System.FormatException" />
            <exception cref="T:JWT.Exceptions.SignatureVerificationException" />
            <exception cref="T:JWT.Exceptions.TokenNotYetValidException" />
            <exception cref="T:JWT.Exceptions.TokenExpiredException" />
        </member>
        <member name="M:JWT.JwtDecoder.DecodeToObject(System.Type,JWT.JwtParts,System.Byte[],System.Boolean)">
            <inheritdoc />
            <exception cref="T:System.ArgumentException" />
            <exception cref="T:System.ArgumentNullException" />
            <exception cref="T:System.ArgumentOutOfRangeException" />
            <exception cref="T:System.FormatException" />
            <exception cref="T:JWT.Exceptions.SignatureVerificationException" />
            <exception cref="T:JWT.Exceptions.TokenNotYetValidException" />
            <exception cref="T:JWT.Exceptions.TokenExpiredException" />
        </member>
        <member name="M:JWT.JwtDecoder.DecodeToObject(System.Type,JWT.JwtParts,System.Byte[][],System.Boolean)">
            <inheritdoc />
            <exception cref="T:System.ArgumentException" />
            <exception cref="T:System.ArgumentNullException" />
            <exception cref="T:System.ArgumentOutOfRangeException" />
            <exception cref="T:System.FormatException" />
            <exception cref="T:JWT.Exceptions.SignatureVerificationException" />
            <exception cref="T:JWT.Exceptions.TokenNotYetValidException" />
            <exception cref="T:JWT.Exceptions.TokenExpiredException" />
        </member>
        <member name="M:JWT.JwtDecoder.Validate(System.String[],System.Byte[])">
            <summary>
            Prepares data before calling <see cref="T:JWT.IJwtValidator" />
            </summary>
            <param name="parts">The array representation of a JWT</param>
            <param name="key">The key that was used to sign the JWT</param>
            <exception cref="T:System.ArgumentNullException" />
            <exception cref="T:System.ArgumentOutOfRangeException" />
            <exception cref="T:System.FormatException" />
            <exception cref="T:JWT.Exceptions.SignatureVerificationException" />
            <exception cref="T:JWT.Exceptions.TokenNotYetValidException" />
            <exception cref="T:JWT.Exceptions.TokenExpiredException" />
        </member>
        <member name="M:JWT.JwtDecoder.Validate(System.String[],System.Byte[][])">
            <summary>
            Prepares data before calling <see cref="T:JWT.IJwtValidator" />
            </summary>
            <param name="parts">The array representation of a JWT</param>
            <param name="keys">The keys provided which one of them was used to sign the JWT</param>
            <exception cref="T:System.ArgumentNullException" />
            <exception cref="T:System.ArgumentOutOfRangeException" />
            <exception cref="T:System.FormatException" />
            <exception cref="T:JWT.Exceptions.SignatureVerificationException" />
            <exception cref="T:JWT.Exceptions.TokenNotYetValidException" />
            <exception cref="T:JWT.Exceptions.TokenExpiredException" />
        </member>
        <member name="M:JWT.JwtDecoder.Validate(JWT.JwtParts,System.Byte[][])">
            <summary>
            Prepares data before calling <see cref="T:JWT.IJwtValidator" />
            </summary>
            <param name="jwt">The JWT parts</param>
            <param name="keys">The keys provided which one of them was used to sign the JWT</param>
            <exception cref="T:System.ArgumentException" />
            <exception cref="T:System.ArgumentNullException" />
            <exception cref="T:System.ArgumentOutOfRangeException" />
            <exception cref="T:System.FormatException" />
            <exception cref="T:JWT.Exceptions.SignatureVerificationException" />
            <exception cref="T:JWT.Exceptions.TokenNotYetValidException" />
            <exception cref="T:JWT.Exceptions.TokenExpiredException" />
        </member>
        <member name="P:JWT.JwtDecoderContext.Token">
            <summary>
            Unmodified JWT.
            </summary>
        </member>
        <member name="P:JWT.JwtDecoderContext.Header">
            <summary>
            Deserialized JWT header.
            </summary>
        </member>
        <member name="P:JWT.JwtDecoderContext.Payload">
            <summary>
            Decoded JWT payload.
            </summary>
        </member>
        <member name="T:JWT.JwtEncoder">
            <summary>
            Encodes Jwt.
            </summary>
        </member>
        <member name="M:JWT.JwtEncoder.#ctor(JWT.Algorithms.IAlgorithmFactory,JWT.IJsonSerializer,JWT.IBase64UrlEncoder)">
            <summary>
            Creates an instance of <see cref="T:JWT.JwtEncoder" />
            </summary>
            <param name="algFactory">The JWT algorithm factory</param>
            <param name="jsonSerializer">The JSON serializer</param>
            <param name="urlEncoder">The base64 URL encoder</param>
        </member>
        <member name="M:JWT.JwtEncoder.#ctor(JWT.Algorithms.IJwtAlgorithm,JWT.IJsonSerializer,JWT.IBase64UrlEncoder)">
            <summary>
            Creates an instance of <see cref="T:JWT.JwtEncoder" />
            </summary>
            <param name="algorithm">The JWT algorithm</param>
            <param name="jsonSerializer">The JSON serializer</param>
            <param name="urlEncoder">The base64 URL encoder</param>
        </member>
        <member name="M:JWT.JwtEncoder.Encode(System.Collections.Generic.IDictionary{System.String,System.Object},System.Object,System.Byte[])">
            <inheritdoc />
            <exception cref="T:System.ArgumentNullException" />
        </member>
        <member name="T:JWT.JwtParts">
            <summary>
            Represent the parts of a JWT
            </summary>
        </member>
        <member name="M:JWT.JwtParts.#ctor(System.String)">
            <summary>
            Creates a new instance of <see cref="T:JWT.JwtParts" /> from the string representation of a JWT
            </summary>
            <param name="token">The string representation of a JWT</param>
            <exception cref="T:System.ArgumentException" />
            <exception cref="T:System.ArgumentOutOfRangeException" />
        </member>
        <member name="M:JWT.JwtParts.#ctor(System.String[])">
            <summary>
            Creates a new instance of <see cref="T:JWT.JwtParts" /> from the array representation of a JWT
            </summary>
            <param name="parts">The array representation of a JWT</param>
            <exception cref="T:System.ArgumentNullException" />
            <exception cref="T:System.ArgumentOutOfRangeException" />
        </member>
        <member name="P:JWT.JwtParts.Header">
            <summary>
            Gets the Header part of a JWT
            </summary>
        </member>
        <member name="P:JWT.JwtParts.Payload">
            <summary>
            Gets the Payload part of a JWT
            </summary>
        </member>
        <member name="P:JWT.JwtParts.Signature">
            <summary>
            Gets the Signature part of a JWT
            </summary>
        </member>
        <member name="P:JWT.JwtParts.Parts">
            <summary>
            Gets the parts of a JWT
            </summary>
        </member>
        <member name="T:JWT.JwtParts.JwtPartsIndex">
            <summary>
            Helper enum to get the correct part from the array representation of a JWT parts
            </summary>
        </member>
        <member name="T:JWT.JwtValidator">
            <summary>
            Jwt validator.
            </summary>
        </member>
        <member name="M:JWT.JwtValidator.#ctor(JWT.IJsonSerializer,JWT.IDateTimeProvider)">
            <summary>
            Creates an instance of <see cref="T:JWT.JwtValidator" />
            </summary>
            <param name="jsonSerializer">The JSON serializer</param>
            <param name="dateTimeProvider">The DateTime provider</param>
        </member>
        <member name="M:JWT.JwtValidator.#ctor(JWT.IJsonSerializer,JWT.IDateTimeProvider,JWT.ValidationParameters)">
            <summary>
            Creates an instance of <see cref="T:JWT.JwtValidator" /> with time margin
            </summary>
            <param name="jsonSerializer">The JSON serializer</param>
            <param name="dateTimeProvider">The DateTime provider</param>
            <param name="valParams">Validation parameters that are passed on to <see cref="T:JWT.JwtValidator"/></param>
        </member>
        <member name="M:JWT.JwtValidator.#ctor(JWT.IJsonSerializer,JWT.IDateTimeProvider,JWT.ValidationParameters,JWT.IBase64UrlEncoder)">
            <summary>
            Creates an instance of <see cref="T:JWT.JwtValidator" /> with time margin
            </summary>
            <param name="jsonSerializer">The JSON serializer</param>
            <param name="dateTimeProvider">The DateTime provider</param>
            <param name="valParams">Validation parameters that are passed on to <see cref="T:JWT.JwtValidator"/></param>
            <param name="urlEncoder">The base64 URL Encoder</param>
        </member>
        <member name="M:JWT.JwtValidator.Validate(System.String,System.String,System.String[])">
            <inheritdoc />
            <exception cref="T:System.ArgumentException" />
            <exception cref="T:JWT.Exceptions.SignatureVerificationException" />
        </member>
        <member name="M:JWT.JwtValidator.Validate(System.String,JWT.Algorithms.IAsymmetricAlgorithm,System.Byte[],System.Byte[])">
            <inheritdoc />
            <exception cref="T:System.ArgumentException" />
            <exception cref="T:JWT.Exceptions.SignatureVerificationException" />
        </member>
        <member name="M:JWT.JwtValidator.TryValidate(System.String,System.String,System.String,System.Exception@)">
            <inheritdoc />
            <exception cref="T:System.ArgumentException" />
        </member>
        <member name="M:JWT.JwtValidator.TryValidate(System.String,System.String,System.String[],System.Exception@)">
            <inheritdoc />
            <exception cref="T:System.ArgumentException" />
        </member>
        <member name="M:JWT.JwtValidator.TryValidate(System.String,JWT.Algorithms.IAsymmetricAlgorithm,System.Byte[],System.Byte[],System.Exception@)">
            <inheritdoc />
            <exception cref="T:System.ArgumentException" />
        </member>
        <member name="M:JWT.JwtValidator.CompareCryptoWithSignature(System.String,System.String)">
            <remarks>In the future this method can be opened for extension hence made protected virtual</remarks>
        </member>
        <member name="M:JWT.JwtValidator.ValidateExpClaim(System.Collections.Generic.IReadOnlyDictionary{System.String,System.Object},System.Double)">
            <summary>
            Verifies the 'exp' claim.
            </summary>
            <remarks>See https://tools.ietf.org/html/rfc7519#section-4.1.4</remarks>
            <exception cref="T:JWT.Exceptions.SignatureVerificationException" />
            <exception cref="T:JWT.Exceptions.TokenExpiredException" />
        </member>
        <member name="M:JWT.JwtValidator.ValidateNbfClaim(System.Collections.Generic.IReadOnlyDictionary{System.String,System.Object},System.Double)">
            <summary>
            Verifies the 'nbf' claim.
            </summary>
            <remarks>See https://tools.ietf.org/html/rfc7519#section-4.1.5</remarks>
            <exception cref="T:JWT.Exceptions.SignatureVerificationException" />
        </member>
        <member name="M:JWT.Serializers.DelegateJsonSerializerFactory.#ctor(JWT.IJsonSerializer)">
            <summary>
            Creates an instance of <see cref="T:JWT.Serializers.DelegateJsonSerializerFactory" /> with supplied JSON serializer.
            </summary>
            <exception cref="T:System.ArgumentNullException" />
        </member>
        <member name="M:JWT.Serializers.DelegateJsonSerializerFactory.#ctor(JWT.Serializers.IJsonSerializerFactory)">
            <summary>
            Creates an instance of <see cref="T:JWT.Serializers.DelegateJsonSerializerFactory" /> with supplied serializer JSON serializer factory.
            </summary>
            <exception cref="T:System.ArgumentNullException" />
        </member>
        <member name="M:JWT.Serializers.DelegateJsonSerializerFactory.#ctor(System.Func{JWT.IJsonSerializer})">
            <summary>
            Creates an instance of <see cref="T:JWT.Serializers.DelegateJsonSerializerFactory" /> with supplied delegate to a JSON serializer.
            </summary>
            <exception cref="T:System.ArgumentNullException" />
        </member>
        <member name="T:JWT.Serializers.JsonNetSerializer">
            <summary>
            JSON serializer using Newtonsoft.Json implementation.
            </summary>
        </member>
        <member name="M:JWT.Serializers.JsonNetSerializer.#ctor">
            <summary>
            Creates a new instance of <see cref="T:JWT.Serializers.JsonNetSerializer" />
            </summary>
            <remarks>Uses <see cref="M:Newtonsoft.Json.JsonSerializer.CreateDefault" /> as internal serializer</remarks>
            <exception cref="T:System.ArgumentNullException" />
        </member>
        <member name="M:JWT.Serializers.JsonNetSerializer.#ctor(Newtonsoft.Json.JsonSerializer)">
            <summary>
            Creates a new instance of <see cref="T:JWT.Serializers.JsonNetSerializer" />
            </summary>
            <param name="serializer">Internal <see cref="T:Newtonsoft.Json.JsonSerializer" /> to use for serialization</param>
            <exception cref="T:System.ArgumentNullException" />
        </member>
        <member name="M:JWT.Serializers.JsonNetSerializer.Serialize(System.Object)">
            <inheritdoc />
            <exception cref="T:System.ArgumentNullException" />
        </member>
        <member name="M:JWT.Serializers.JsonNetSerializer.Deserialize(System.Type,System.String)">
            <inheritdoc />
            <exception cref="T:System.ArgumentNullException" />
            <exception cref="T:System.ArgumentException" />
        </member>
        <member name="P:JWT.UnixEpoch.Value">
            <summary>
            Describes a point in time, defined as the number of seconds that have elapsed since 00:00:00 UTC, Thursday, 1 January 1970, not counting leap seconds.
            See https://en.wikipedia.org/wiki/Unix_time />
            </summary>
        </member>
        <member name="T:JWT.UtcDateTimeProvider">
            <summary>
            Provider for UTC DateTime.
            </summary>
        </member>
        <member name="M:JWT.UtcDateTimeProvider.GetNow">
            <summary>
            Retuns the current time (UTC).
            </summary>
            <returns></returns>
        </member>
        <member name="T:JWT.ValidationParameters">
            <summary>
            Contains a set of parameters that are used by a <see cref="T:JWT.JwtValidator" /> when validating a token.
            </summary>
        </member>
        <member name="M:JWT.ValidationParameters.#ctor">
            <remarks>
            By default, all peroperties are set to <c>true</c> to ensure validation is enabled.
            Use <see cref="P:JWT.ValidationParameters.Default"/> if you'd like to set all properties set to <see langword="true" />
            or use <see cref="P:JWT.ValidationParameters.None"/> if you'd like to set all properties set to <see langword="false" />.
            </remarks>>
        </member>
        <member name="P:JWT.ValidationParameters.ValidateSignature">
            <summary>
            Gets or sets whether to validate the validity of the token's signature.
            </summary>
        </member>
        <member name="P:JWT.ValidationParameters.ValidateExpirationTime">
            <summary>
            Gets or sets whether to validate the validity of the token's expiration time.
            </summary>
        </member>
        <member name="P:JWT.ValidationParameters.ValidateIssuedTime">
            <summary>
            Gets or sets whether to validate the validity of the token's issued time.
            </summary>
        </member>
        <member name="P:JWT.ValidationParameters.TimeMargin">
            <summary>
            Gets or sets the time margin in seconds for exp and nbf during token validation.
            </summary>
        </member>
        <member name="P:JWT.ValidationParameters.Default">
            <summary>
            Returns a <see cref="T:JWT.ValidationParameters" /> with all properties set to <see langword="true" />.
            </summary>
        </member>
        <member name="P:JWT.ValidationParameters.None">
            <summary>
            Returns a <see cref="T:JWT.ValidationParameters" /> with all properties set to <see langword="false" />.
            </summary>
        </member>
    </members>
</doc>