-
Notifications
You must be signed in to change notification settings - Fork 401
/
JwtSecurityTokenHandler.cs
1568 lines (1372 loc) · 87.9 KB
/
JwtSecurityTokenHandler.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation.
// All rights reserved.
//
// This code is licensed under the MIT License.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files(the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and / or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions :
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
//
//------------------------------------------------------------------------------
using System.Collections.Generic;
using System.ComponentModel;
using System.Security.Claims;
using System.Security.Cryptography;
using System.Security.Cryptography.X509Certificates;
using System.Text;
using System.Text.RegularExpressions;
using System.Xml;
using Microsoft.IdentityModel.Logging;
using Microsoft.IdentityModel.Tokens;
using TokenLogMessages = Microsoft.IdentityModel.Tokens.LogMessages;
namespace System.IdentityModel.Tokens.Jwt
{
/// <summary>
/// A <see cref="SecurityTokenHandler"/> designed for creating and validating Json Web Tokens. See: http://tools.ietf.org/html/rfc7519 and http://www.rfc-editor.org/info/rfc7515
/// </summary>
public class JwtSecurityTokenHandler : SecurityTokenHandler
{
internal static Regex RegexJws;
internal static Regex RegexJwe;
private delegate bool CertMatcher(X509Certificate2 cert);
private int _defaultTokenLifetimeInMinutes = DefaultTokenLifetimeInMinutes;
private ISet<string> _inboundClaimFilter;
private IDictionary<string, string> _inboundClaimTypeMap;
private static string _jsonClaimType = _namespace + "/json_type";
private const string _namespace = "http://schemas.xmlsoap.org/ws/2005/05/identity/claimproperties";
private IDictionary<string, string> _outboundClaimTypeMap;
private IDictionary<string, string> _outboundAlgorithmMap = null;
private static string _shortClaimType = _namespace + "/ShortTypeName";
private bool _mapInboundClaims = DefaultMapInboundClaims;
/// <summary>
/// Default lifetime of tokens created. When creating tokens, if 'expires' and 'notbefore' are both null, then a default will be set to: expires = DateTime.UtcNow, notbefore = DateTime.UtcNow + TimeSpan.FromMinutes(TokenLifetimeInMinutes).
/// </summary>
public static readonly int DefaultTokenLifetimeInMinutes = 60;
/// <summary>
/// Default claim type mapping for inbound claims.
/// </summary>
public static IDictionary<string, string> DefaultInboundClaimTypeMap = ClaimTypeMapping.InboundClaimTypeMap;
/// <summary>
/// Default value for the flag that determines whether or not the InboundClaimTypeMap is used.
/// </summary>
public static bool DefaultMapInboundClaims = true;
/// <summary>
/// Default claim type mapping for outbound claims.
/// </summary>
public static IDictionary<string, string> DefaultOutboundClaimTypeMap = ClaimTypeMapping.OutboundClaimTypeMap;
/// <summary>
/// Default claim type filter list.
/// </summary>
public static ISet<string> DefaultInboundClaimFilter = ClaimTypeMapping.InboundClaimFilter;
/// <summary>
/// Default JwtHeader algorithm mapping
/// </summary>
public static IDictionary<string, string> DefaultOutboundAlgorithmMap;
/// <summary>
/// Static initializer for a new object. Static initializers run before the first instance of the type is created.
/// </summary>
static JwtSecurityTokenHandler()
{
LogHelper.LogVerbose("Assembly version info: " + typeof(JwtSecurityTokenHandler).AssemblyQualifiedName);
DefaultOutboundAlgorithmMap = new Dictionary<string, string>
{
{ SecurityAlgorithms.EcdsaSha256Signature, SecurityAlgorithms.EcdsaSha256 },
{ SecurityAlgorithms.EcdsaSha384Signature, SecurityAlgorithms.EcdsaSha384 },
{ SecurityAlgorithms.EcdsaSha512Signature, SecurityAlgorithms.EcdsaSha512 },
{ SecurityAlgorithms.HmacSha256Signature, SecurityAlgorithms.HmacSha256 },
{ SecurityAlgorithms.HmacSha384Signature, SecurityAlgorithms.HmacSha384 },
{ SecurityAlgorithms.HmacSha512Signature, SecurityAlgorithms.HmacSha512 },
{ SecurityAlgorithms.RsaSha256Signature, SecurityAlgorithms.RsaSha256 },
{ SecurityAlgorithms.RsaSha384Signature, SecurityAlgorithms.RsaSha384 },
{ SecurityAlgorithms.RsaSha512Signature, SecurityAlgorithms.RsaSha512 },
};
RegexJws = new Regex(JwtConstants.JsonCompactSerializationRegex, RegexOptions.Compiled | RegexOptions.CultureInvariant, TimeSpan.FromMilliseconds(100));
RegexJwe = new Regex(JwtConstants.JweCompactSerializationRegex, RegexOptions.Compiled | RegexOptions.CultureInvariant, TimeSpan.FromMilliseconds(100));
}
/// <summary>
/// Initializes a new instance of the <see cref="JwtSecurityTokenHandler"/> class.
/// </summary>
public JwtSecurityTokenHandler()
{
if (_mapInboundClaims)
_inboundClaimTypeMap = new Dictionary<string, string>(DefaultInboundClaimTypeMap);
else
_inboundClaimTypeMap = new Dictionary<string, string>();
_outboundClaimTypeMap = new Dictionary<string, string>(DefaultOutboundClaimTypeMap);
_inboundClaimFilter = new HashSet<string>(DefaultInboundClaimFilter);
_outboundAlgorithmMap = new Dictionary<string, string>(DefaultOutboundAlgorithmMap);
}
/// <summary>
/// Gets or sets the <see cref="MapInboundClaims"/> property which is used when determining whether or not to map claim types that are extracted when validating a <see cref="JwtSecurityToken"/>.
/// <para>If this is set to true, the <see cref="Claim.Type"/> is set to the JSON claim 'name' after translating using this mapping. Otherwise, no mapping occurs.</para>
/// <para>The default value is true.</para>
/// </summary>
public bool MapInboundClaims
{
get
{
return _mapInboundClaims;
}
set
{
// If the inbound claim type mapping was turned off and is being turned on for the first time, make sure that the _inboundClaimTypeMap is populated with the default mappings.
if (!_mapInboundClaims && value && _inboundClaimTypeMap.Count == 0)
_inboundClaimTypeMap = new Dictionary<string, string>(DefaultInboundClaimTypeMap);
_mapInboundClaims = value;
}
}
/// <summary>
/// Gets or sets the <see cref="InboundClaimTypeMap"/> which is used when setting the <see cref="Claim.Type"/> for claims in the <see cref="ClaimsPrincipal"/> extracted when validating a <see cref="JwtSecurityToken"/>.
/// <para>The <see cref="Claim.Type"/> is set to the JSON claim 'name' after translating using this mapping.</para>
/// <para>The default value is ClaimTypeMapping.InboundClaimTypeMap.</para>
/// </summary>
/// <exception cref="ArgumentNullException">'value' is null.</exception>
public IDictionary<string, string> InboundClaimTypeMap
{
get
{
return _inboundClaimTypeMap;
}
set
{
_inboundClaimTypeMap = value ?? throw LogHelper.LogArgumentNullException(nameof(value));
}
}
/// <summary>
/// <para>Gets or sets the <see cref="OutboundClaimTypeMap"/> which is used when creating a <see cref="JwtSecurityToken"/> from <see cref="Claim"/>(s).</para>
/// <para>The JSON claim 'name' value is set to <see cref="Claim.Type"/> after translating using this mapping.</para>
/// <para>The default value is ClaimTypeMapping.OutboundClaimTypeMap</para>
/// </summary>
/// <remarks>This mapping is applied only when using <see cref="JwtPayload.AddClaim"/> or <see cref="JwtPayload.AddClaims"/>. Adding values directly will not result in translation.</remarks>
/// <exception cref="ArgumentNullException">'value' is null.</exception>
public IDictionary<string, string> OutboundClaimTypeMap
{
get
{
return _outboundClaimTypeMap;
}
set
{
if (value == null)
throw LogHelper.LogArgumentNullException(nameof(value));
_outboundClaimTypeMap = value;
}
}
/// <summary>
/// Gets the outbound algorithm map that is passed to the <see cref="JwtHeader"/> constructor.
/// </summary>
public IDictionary<string, string> OutboundAlgorithmMap
{
get
{
return _outboundAlgorithmMap;
}
}
/// <summary>Gets or sets the <see cref="ISet{String}"/> used to filter claims when populating a <see cref="ClaimsIdentity"/> claims form a <see cref="JwtSecurityToken"/>.
/// When a <see cref="JwtSecurityToken"/> is validated, claims with types found in this <see cref="ISet{String}"/> will not be added to the <see cref="ClaimsIdentity"/>.
/// <para>The default value is ClaimTypeMapping.InboundClaimFilter.</para>
/// </summary>
/// <exception cref="ArgumentNullException">'value' is null.</exception>
public ISet<string> InboundClaimFilter
{
get
{
return _inboundClaimFilter;
}
set
{
if (value == null)
throw LogHelper.LogArgumentNullException(nameof(value));
_inboundClaimFilter = value;
}
}
/// <summary>
/// Gets or sets the property name of <see cref="Claim.Properties"/> the will contain the original JSON claim 'name' if a mapping occurred when the <see cref="Claim"/>(s) were created.
/// <para>See <seealso cref="InboundClaimTypeMap"/> for more information.</para>
/// </summary>
/// <exception cref="ArgumentException">If <see cref="string"/>.IsNullOrWhiteSpace('value') is true.</exception>
public static string ShortClaimTypeProperty
{
get
{
return _shortClaimType;
}
set
{
if (string.IsNullOrWhiteSpace(value))
throw LogHelper.LogArgumentNullException(nameof(value));
_shortClaimType = value;
}
}
/// <summary>
/// Gets or sets the property name of <see cref="Claim.Properties"/> the will contain .Net type that was recognized when JwtPayload.Claims serialized the value to JSON.
/// <para>See <seealso cref="InboundClaimTypeMap"/> for more information.</para>
/// </summary>
/// <exception cref="ArgumentException">If <see cref="string"/>.IsNullOrWhiteSpace('value') is true.</exception>
public static string JsonClaimTypeProperty
{
get
{
return _jsonClaimType;
}
set
{
if (string.IsNullOrWhiteSpace(value))
throw LogHelper.LogArgumentNullException(nameof(value));
_jsonClaimType = value;
}
}
/// <summary>
/// Returns a value that indicates if this handler can validate a <see cref="SecurityToken"/>.
/// </summary>
/// <returns>'true', indicating this instance can validate a <see cref="JwtSecurityToken"/>.</returns>
public override bool CanValidateToken
{
get { return true; }
}
/// <summary>
/// Gets the value that indicates if this instance can write a <see cref="SecurityToken"/>.
/// </summary>
/// <returns>'true', indicating this instance can write a <see cref="JwtSecurityToken"/>.</returns>
public override bool CanWriteToken
{
get { return true; }
}
/// <summary>
/// Gets or sets the token lifetime in minutes.
/// </summary>
/// <remarks>Used by <see cref="CreateToken(SecurityTokenDescriptor)"/> to set the default expiration ('exp'). <see cref="DefaultTokenLifetimeInMinutes"/> for the default.</remarks>
/// <exception cref="ArgumentOutOfRangeException">'value' less than 1.</exception>
public int TokenLifetimeInMinutes
{
get
{
return _defaultTokenLifetimeInMinutes;
}
set
{
if (value < 1)
throw LogHelper.LogExceptionMessage(new ArgumentOutOfRangeException(nameof(value), LogHelper.FormatInvariant(TokenLogMessages.IDX10104, value)));
_defaultTokenLifetimeInMinutes = value;
}
}
/// <summary>
/// Gets the type of the <see cref="System.IdentityModel.Tokens.Jwt.JwtSecurityToken"/>.
/// </summary>
/// <return>The type of <see cref="System.IdentityModel.Tokens.Jwt.JwtSecurityToken"/></return>
public override Type TokenType
{
get { return typeof(JwtSecurityToken); }
}
/// <summary>
/// Determines if the string is a well formed Json Web Token (JWT).
/// <para>see: http://tools.ietf.org/html/rfc7519 </para>
/// </summary>
/// <param name="token">String that should represent a valid JWT.</param>
/// <remarks>Uses <see cref="Regex.IsMatch(string, string)"/> matching one of:
/// <para>JWS: @"^[A-Za-z0-9-_]+\.[A-Za-z0-9-_]+\.[A-Za-z0-9-_]*$"</para>
/// <para>JWE: (dir): @"^[A-Za-z0-9-_]+\.\.[A-Za-z0-9-_]+\.[A-Za-z0-9-_]+\.[A-Za-z0-9-_]*$"</para>
/// <para>JWE: (wrappedkey): @"^[A-Za-z0-9-_]+\.[A-Za-z0-9-_]+\.[A-Za-z0-9-_]+\.[A-Za-z0-9-_]+\.[A-Za-z0-9-_]$"</para>
/// </remarks>
/// <returns>
/// <para>'false' if the token is null or whitespace.</para>
/// <para>'false' if token.Length * 2 > <see cref="SecurityTokenHandler.MaximumTokenSizeInBytes"/>.</para>
/// <para>'true' if the token is in JSON compact serialization format.</para>
/// </returns>
public override bool CanReadToken(string token)
{
if (string.IsNullOrWhiteSpace(token))
return false;
if (token.Length * 2 > MaximumTokenSizeInBytes)
{
LogHelper.LogInformation(TokenLogMessages.IDX10209, token.Length, MaximumTokenSizeInBytes);
return false;
}
// Set the maximum number of segments to MaxJwtSegmentCount + 1. This controls the number of splits and allows detecting the number of segments is too large.
// For example: "a.b.c.d.e.f.g.h" => [a], [b], [c], [d], [e], [f.g.h]. 6 segments.
// If just MaxJwtSegmentCount was used, then [a], [b], [c], [d], [e.f.g.h] would be returned. 5 segments.
string[] tokenParts = token.Split(new char[] { '.' }, JwtConstants.MaxJwtSegmentCount + 1);
if (tokenParts.Length == JwtConstants.JwsSegmentCount)
{
return RegexJws.IsMatch(token);
}
else if (tokenParts.Length == JwtConstants.JweSegmentCount)
{
return RegexJwe.IsMatch(token);
}
LogHelper.LogInformation(LogMessages.IDX12720);
return false;
}
/// <summary>
/// Returns a Json Web Token (JWT).
/// </summary>
/// <param name="tokenDescriptor">A <see cref="SecurityTokenDescriptor"/> that contains details of contents of the token.</param>
/// <remarks>A JWS and JWE can be returned.
/// <para>If <see cref="SecurityTokenDescriptor.EncryptingCredentials"/>is provided, then a JWE will be created.</para>
/// <para>If <see cref="SecurityTokenDescriptor.SigningCredentials"/> is provided then a JWS will be created.</para>
/// <para>If both are provided then a JWE with an embedded JWS will be created.</para>
/// </remarks>
public virtual string CreateEncodedJwt(SecurityTokenDescriptor tokenDescriptor)
{
if (tokenDescriptor == null)
throw LogHelper.LogArgumentNullException(nameof(tokenDescriptor));
return CreateJwtSecurityToken(tokenDescriptor).RawData;
}
/// <summary>
/// Creates a JWT in 'Compact Serialization Format'.
/// </summary>
/// <param name="issuer">The issuer of the token.</param>
/// <param name="audience">The audience for this token.</param>
/// <param name="subject">The source of the <see cref="Claim"/>(s) for this token.</param>
/// <param name="notBefore">The notbefore time for this token.</param>
/// <param name="expires">The expiration time for this token.</param>
/// <param name="issuedAt">The issue time for this token.</param>
/// <param name="signingCredentials">Contains cryptographic material for generating a signature.</param>
/// <remarks>If <see cref="ClaimsIdentity.Actor"/> is not null, then a claim { actort, 'value' } will be added to the payload. See <see cref="CreateActorValue"/> for details on how the value is created.
/// <para>See <seealso cref="JwtHeader"/> for details on how the HeaderParameters are added to the header.</para>
/// <para>See <seealso cref="JwtPayload"/> for details on how the values are added to the payload.</para>
/// <para>Each <see cref="Claim"/> in the <paramref name="subject"/> will map <see cref="Claim.Type"/> by applying <see cref="OutboundClaimTypeMap"/>. Modifying <see cref="OutboundClaimTypeMap"/> could change the outbound JWT.</para>
/// <para>If <see cref="SigningCredentials"/> is provided, then a JWS will be created.</para>
/// </remarks>
/// <returns>A Base64UrlEncoded string in 'Compact Serialization Format'.</returns>
public virtual string CreateEncodedJwt(string issuer, string audience, ClaimsIdentity subject, DateTime? notBefore, DateTime? expires, DateTime? issuedAt, SigningCredentials signingCredentials)
{
return CreateJwtSecurityTokenPrivate(issuer, audience, subject, notBefore, expires, issuedAt, signingCredentials, null).RawData;
}
/// <summary>
/// Creates a JWT in 'Compact Serialization Format'.
/// </summary>
/// <param name="issuer">The issuer of the token.</param>
/// <param name="audience">The audience for this token.</param>
/// <param name="subject">The source of the <see cref="Claim"/>(s) for this token.</param>
/// <param name="notBefore">Translated into 'epoch time' and assigned to 'nbf'.</param>
/// <param name="expires">Translated into 'epoch time' and assigned to 'exp'.</param>
/// <param name="issuedAt">Translated into 'epoch time' and assigned to 'iat'.</param>
/// <param name="signingCredentials">Contains cryptographic material for signing.</param>
/// <param name="encryptingCredentials">Contains cryptographic material for encrypting.</param>
/// <remarks>If <see cref="ClaimsIdentity.Actor"/> is not null, then a claim { actort, 'value' } will be added to the payload. <see cref="CreateActorValue"/> for details on how the value is created.
/// <para>See <seealso cref="JwtHeader"/> for details on how the HeaderParameters are added to the header.</para>
/// <para>See <seealso cref="JwtPayload"/> for details on how the values are added to the payload.</para>
/// <para>Each <see cref="Claim"/> in the <paramref name="subject"/> will map <see cref="Claim.Type"/> by applying <see cref="OutboundClaimTypeMap"/>. Modifying <see cref="OutboundClaimTypeMap"/> could change the outbound JWT.</para>
/// </remarks>
/// <returns>A Base64UrlEncoded string in 'Compact Serialization Format'.</returns>
/// <exception cref="ArgumentException">If 'expires' <= 'notBefore'.</exception>
public virtual string CreateEncodedJwt(string issuer, string audience, ClaimsIdentity subject, DateTime? notBefore, DateTime? expires, DateTime? issuedAt, SigningCredentials signingCredentials, EncryptingCredentials encryptingCredentials)
{
return CreateJwtSecurityTokenPrivate(issuer, audience, subject, notBefore, expires, issuedAt, signingCredentials, encryptingCredentials).RawData;
}
/// <summary>
/// Creates a Json Web Token (JWT).
/// </summary>
/// <param name="tokenDescriptor"> A <see cref="SecurityTokenDescriptor"/> that contains details of contents of the token.</param>
/// <remarks><see cref="SecurityTokenDescriptor.SigningCredentials"/> is used to sign <see cref="JwtSecurityToken.RawData"/>.</remarks>
public virtual JwtSecurityToken CreateJwtSecurityToken(SecurityTokenDescriptor tokenDescriptor)
{
if (tokenDescriptor == null)
throw LogHelper.LogArgumentNullException(nameof(tokenDescriptor));
return CreateJwtSecurityTokenPrivate(
tokenDescriptor.Issuer,
tokenDescriptor.Audience,
tokenDescriptor.Subject,
tokenDescriptor.NotBefore,
tokenDescriptor.Expires,
tokenDescriptor.IssuedAt,
tokenDescriptor.SigningCredentials,
tokenDescriptor.EncryptingCredentials);
}
/// <summary>
/// Creates a <see cref="JwtSecurityToken"/>
/// </summary>
/// <param name="issuer">The issuer of the token.</param>
/// <param name="audience">The audience for this token.</param>
/// <param name="subject">The source of the <see cref="Claim"/>(s) for this token.</param>
/// <param name="notBefore">The notbefore time for this token.</param>
/// <param name="expires">The expiration time for this token.</param>
/// <param name="issuedAt">The issue time for this token.</param>
/// <param name="signingCredentials">Contains cryptographic material for generating a signature.</param>
/// <param name="encryptingCredentials">Contains cryptographic material for encrypting the token.</param>
/// <remarks>If <see cref="ClaimsIdentity.Actor"/> is not null, then a claim { actort, 'value' } will be added to the payload. <see cref="CreateActorValue"/> for details on how the value is created.
/// <para>See <seealso cref="JwtHeader"/> for details on how the HeaderParameters are added to the header.</para>
/// <para>See <seealso cref="JwtPayload"/> for details on how the values are added to the payload.</para>
/// <para>Each <see cref="Claim"/> on the <paramref name="subject"/> added will have <see cref="Claim.Type"/> translated according to the mapping found in
/// <see cref="OutboundClaimTypeMap"/>. Adding and removing to <see cref="OutboundClaimTypeMap"/> will affect the name component of the Json claim.</para>
/// <para><see cref="SigningCredentials.SigningCredentials(SecurityKey, string)"/> is used to sign <see cref="JwtSecurityToken.RawData"/>.</para>
/// <para><see cref="EncryptingCredentials.EncryptingCredentials(SecurityKey, string, string)"/> is used to encrypt <see cref="JwtSecurityToken.RawData"/> or <see cref="JwtSecurityToken.RawPayload"/> .</para>
/// </remarks>
/// <returns>A <see cref="JwtSecurityToken"/>.</returns>
/// <exception cref="ArgumentException">If 'expires' <= 'notBefore'.</exception>
public virtual JwtSecurityToken CreateJwtSecurityToken(string issuer, string audience, ClaimsIdentity subject, DateTime? notBefore, DateTime? expires, DateTime? issuedAt, SigningCredentials signingCredentials, EncryptingCredentials encryptingCredentials)
{
return CreateJwtSecurityTokenPrivate(issuer, audience, subject, notBefore, expires, issuedAt, signingCredentials, encryptingCredentials);
}
/// <summary>
/// Creates a <see cref="JwtSecurityToken"/>
/// </summary>
/// <param name="issuer">The issuer of the token.</param>
/// <param name="audience">The audience for this token.</param>
/// <param name="subject">The source of the <see cref="Claim"/>(s) for this token.</param>
/// <param name="notBefore">The notbefore time for this token.</param>
/// <param name="expires">The expiration time for this token.</param>
/// <param name="issuedAt">The issue time for this token.</param>
/// <param name="signingCredentials">Contains cryptographic material for generating a signature.</param>
/// <remarks>If <see cref="ClaimsIdentity.Actor"/> is not null, then a claim { actort, 'value' } will be added to the payload. <see cref="CreateActorValue"/> for details on how the value is created.
/// <para>See <seealso cref="JwtHeader"/> for details on how the HeaderParameters are added to the header.</para>
/// <para>See <seealso cref="JwtPayload"/> for details on how the values are added to the payload.</para>
/// <para>Each <see cref="Claim"/> on the <paramref name="subject"/> added will have <see cref="Claim.Type"/> translated according to the mapping found in
/// <see cref="OutboundClaimTypeMap"/>. Adding and removing to <see cref="OutboundClaimTypeMap"/> will affect the name component of the Json claim.</para>
/// <para><see cref="SigningCredentials.SigningCredentials(SecurityKey, string)"/> is used to sign <see cref="JwtSecurityToken.RawData"/>.</para>
/// </remarks>
/// <returns>A <see cref="JwtSecurityToken"/>.</returns>
/// <exception cref="ArgumentException">If 'expires' <= 'notBefore'.</exception>
public virtual JwtSecurityToken CreateJwtSecurityToken(string issuer = null, string audience = null, ClaimsIdentity subject = null, DateTime? notBefore = null, DateTime? expires = null, DateTime? issuedAt = null, SigningCredentials signingCredentials = null)
{
return CreateJwtSecurityTokenPrivate(issuer, audience, subject, notBefore, expires, issuedAt, signingCredentials, null);
}
/// <summary>
/// Creates a Json Web Token (JWT).
/// </summary>
/// <param name="tokenDescriptor"> A <see cref="SecurityTokenDescriptor"/> that contains details of contents of the token.</param>
/// <remarks><see cref="SecurityTokenDescriptor.SigningCredentials"/> is used to sign <see cref="JwtSecurityToken.RawData"/>.</remarks>
public override SecurityToken CreateToken(SecurityTokenDescriptor tokenDescriptor)
{
if (tokenDescriptor == null)
throw LogHelper.LogArgumentNullException(nameof(tokenDescriptor));
return CreateJwtSecurityTokenPrivate(
tokenDescriptor.Issuer,
tokenDescriptor.Audience,
tokenDescriptor.Subject,
tokenDescriptor.NotBefore,
tokenDescriptor.Expires,
tokenDescriptor.IssuedAt,
tokenDescriptor.SigningCredentials,
tokenDescriptor.EncryptingCredentials);
}
private JwtSecurityToken CreateJwtSecurityTokenPrivate(string issuer, string audience, ClaimsIdentity subject, DateTime? notBefore, DateTime? expires, DateTime? issuedAt, SigningCredentials signingCredentials, EncryptingCredentials encryptingCredentials)
{
if (SetDefaultTimesOnTokenCreation && (!expires.HasValue || !issuedAt.HasValue || !notBefore.HasValue))
{
DateTime now = DateTime.UtcNow;
if (!expires.HasValue)
expires = now + TimeSpan.FromMinutes(TokenLifetimeInMinutes);
if (!issuedAt.HasValue)
issuedAt = now;
if (!notBefore.HasValue)
notBefore = now;
}
LogHelper.LogVerbose(LogMessages.IDX12721, (audience ?? "null"), (issuer ?? "null"));
JwtPayload payload = new JwtPayload(issuer, audience, (subject == null ? null : OutboundClaimTypeTransform(subject.Claims)), notBefore, expires, issuedAt);
JwtHeader header = signingCredentials == null ? new JwtHeader() : new JwtHeader(signingCredentials, OutboundAlgorithmMap);
if (subject?.Actor != null)
payload.AddClaim(new Claim(JwtRegisteredClaimNames.Actort, CreateActorValue(subject.Actor)));
string rawHeader = header.Base64UrlEncode();
string rawPayload = payload.Base64UrlEncode();
string rawSignature = signingCredentials == null ? string.Empty : CreateEncodedSignature(string.Concat(rawHeader, ".", rawPayload), signingCredentials);
LogHelper.LogInformation(LogMessages.IDX12722, rawHeader, rawPayload, rawSignature);
if (encryptingCredentials != null)
return EncryptToken(new JwtSecurityToken(header, payload, rawHeader, rawPayload, rawSignature), encryptingCredentials);
else
return new JwtSecurityToken(header, payload, rawHeader, rawPayload, rawSignature);
}
private JwtSecurityToken EncryptToken(JwtSecurityToken innerJwt, EncryptingCredentials encryptingCredentials)
{
var cryptoProviderFactory = encryptingCredentials.CryptoProviderFactory ?? encryptingCredentials.Key.CryptoProviderFactory;
if (cryptoProviderFactory == null)
throw LogHelper.LogExceptionMessage(new ArgumentException(LogMessages.IDX12733));
// if direct algorithm, look for support
if (JwtConstants.DirectKeyUseAlg.Equals(encryptingCredentials.Alg, StringComparison.Ordinal))
{
if (!cryptoProviderFactory.IsSupportedAlgorithm(encryptingCredentials.Enc, encryptingCredentials.Key))
throw LogHelper.LogExceptionMessage(new SecurityTokenEncryptionFailedException(LogHelper.FormatInvariant(TokenLogMessages.IDX10615, encryptingCredentials.Enc, encryptingCredentials.Key)));
var header = new JwtHeader(encryptingCredentials, OutboundAlgorithmMap);
var encryptionProvider = cryptoProviderFactory.CreateAuthenticatedEncryptionProvider(encryptingCredentials.Key, encryptingCredentials.Enc);
if (encryptionProvider == null)
throw LogHelper.LogExceptionMessage(new SecurityTokenEncryptionFailedException(LogMessages.IDX12730));
try
{
var encryptionResult = encryptionProvider.Encrypt(Encoding.UTF8.GetBytes(innerJwt.RawData), Encoding.ASCII.GetBytes(header.Base64UrlEncode()));
return new JwtSecurityToken(
header,
innerJwt,
header.Base64UrlEncode(),
string.Empty,
Base64UrlEncoder.Encode(encryptionResult.IV),
Base64UrlEncoder.Encode(encryptionResult.Ciphertext),
Base64UrlEncoder.Encode(encryptionResult.AuthenticationTag));
}
catch (Exception ex)
{
throw LogHelper.LogExceptionMessage(new SecurityTokenEncryptionFailedException(LogHelper.FormatInvariant(TokenLogMessages.IDX10616, encryptingCredentials.Enc, encryptingCredentials.Key), ex));
}
}
else
{
if (!cryptoProviderFactory.IsSupportedAlgorithm(encryptingCredentials.Alg, encryptingCredentials.Key))
throw LogHelper.LogExceptionMessage(new SecurityTokenEncryptionFailedException(LogHelper.FormatInvariant(TokenLogMessages.IDX10615, encryptingCredentials.Alg, encryptingCredentials.Key)));
SymmetricSecurityKey symmetricKey = null;
// only 128, 384 and 512 AesCbcHmac for CEK algorithm
if (SecurityAlgorithms.Aes128CbcHmacSha256.Equals(encryptingCredentials.Enc, StringComparison.Ordinal))
symmetricKey = new SymmetricSecurityKey(GenerateKeyBytes(256));
else if (SecurityAlgorithms.Aes192CbcHmacSha384.Equals(encryptingCredentials.Enc, StringComparison.Ordinal))
symmetricKey = new SymmetricSecurityKey(GenerateKeyBytes(384));
else if (SecurityAlgorithms.Aes256CbcHmacSha512.Equals(encryptingCredentials.Enc, StringComparison.Ordinal))
symmetricKey = new SymmetricSecurityKey(GenerateKeyBytes(512));
else
throw LogHelper.LogExceptionMessage(new SecurityTokenEncryptionFailedException(LogHelper.FormatInvariant(TokenLogMessages.IDX10617, SecurityAlgorithms.Aes128CbcHmacSha256, SecurityAlgorithms.Aes192CbcHmacSha384, SecurityAlgorithms.Aes256CbcHmacSha512, encryptingCredentials.Enc)));
var kwProvider = cryptoProviderFactory.CreateKeyWrapProvider(encryptingCredentials.Key, encryptingCredentials.Alg);
var wrappedKey = kwProvider.WrapKey(symmetricKey.Key);
var encryptionProvider = cryptoProviderFactory.CreateAuthenticatedEncryptionProvider(symmetricKey, encryptingCredentials.Enc);
if (encryptionProvider == null)
throw LogHelper.LogExceptionMessage(new SecurityTokenEncryptionFailedException(LogMessages.IDX12730));
try
{
var header = new JwtHeader(encryptingCredentials, OutboundAlgorithmMap);
var encryptionResult = encryptionProvider.Encrypt(Encoding.UTF8.GetBytes(innerJwt.RawData), Encoding.ASCII.GetBytes(header.Base64UrlEncode()));
return new JwtSecurityToken(
header,
innerJwt,
header.Base64UrlEncode(),
Base64UrlEncoder.Encode(wrappedKey),
Base64UrlEncoder.Encode(encryptionResult.IV),
Base64UrlEncoder.Encode(encryptionResult.Ciphertext),
Base64UrlEncoder.Encode(encryptionResult.AuthenticationTag));
}
catch (Exception ex)
{
throw LogHelper.LogExceptionMessage(new SecurityTokenEncryptionFailedException(LogHelper.FormatInvariant(TokenLogMessages.IDX10616, encryptingCredentials.Enc, encryptingCredentials.Key), ex));
}
}
}
private static byte[] GenerateKeyBytes(int sizeInBits)
{
byte[] key = null;
if (sizeInBits != 256 && sizeInBits != 384 && sizeInBits != 512)
throw LogHelper.LogExceptionMessage(new ArgumentException(TokenLogMessages.IDX10401, nameof(sizeInBits)));
var aes = Aes.Create();
int halfSizeInBytes = sizeInBits >> 4;
key = new byte[halfSizeInBytes << 1];
aes.KeySize = sizeInBits >> 1;
// The design of AuthenticatedEncryption needs two keys of the same size - generate them, each half size of what's required
aes.GenerateKey();
Array.Copy(aes.Key, key, halfSizeInBytes);
aes.GenerateKey();
Array.Copy(aes.Key, 0, key, halfSizeInBytes, halfSizeInBytes);
return key;
}
private IEnumerable<Claim> OutboundClaimTypeTransform(IEnumerable<Claim> claims)
{
foreach (Claim claim in claims)
{
string type = null;
if (_outboundClaimTypeMap.TryGetValue(claim.Type, out type))
{
yield return new Claim(type, claim.Value, claim.ValueType, claim.Issuer, claim.OriginalIssuer, claim.Subject);
}
else
{
yield return claim;
}
}
}
/// <summary>
/// Converts a string into an instance of <see cref="JwtSecurityToken"/>.
/// </summary>
/// <param name="token">A 'JSON Web Token' (JWT) in JWS or JWE Compact Serialization Format.</param>
/// <returns>A <see cref="JwtSecurityToken"/></returns>
/// <exception cref="ArgumentNullException">'token' is null or empty.</exception>
/// <exception cref="ArgumentException">'token.Length' > <see cref="SecurityTokenHandler.MaximumTokenSizeInBytes"/>.</exception>
/// <exception cref="ArgumentException"><see cref="CanReadToken(string)"/></exception>
/// <remarks><para>If the 'token' is in JWE Compact Serialization format, only the protected header will be deserialized.</para>
/// This method is unable to decrypt the payload. Use <see cref="ValidateToken(string, TokenValidationParameters, out SecurityToken)"/>to obtain the payload.</remarks>
public JwtSecurityToken ReadJwtToken(string token)
{
if (string.IsNullOrEmpty(token))
throw LogHelper.LogArgumentNullException(nameof(token));
if (token.Length > MaximumTokenSizeInBytes)
throw LogHelper.LogExceptionMessage(new ArgumentException(LogHelper.FormatInvariant(TokenLogMessages.IDX10209, token.Length, MaximumTokenSizeInBytes)));
if (!CanReadToken(token))
throw LogHelper.LogExceptionMessage(new ArgumentException(LogHelper.FormatInvariant(LogMessages.IDX12709, token)));
var jwtToken = new JwtSecurityToken();
jwtToken.Decode(token.Split('.'), token);
return jwtToken;
}
/// <summary>
/// Converts a string into an instance of <see cref="JwtSecurityToken"/>.
/// </summary>
/// <param name="token">A 'JSON Web Token' (JWT) in JWS or JWE Compact Serialization Format.</param>
/// <returns>A <see cref="JwtSecurityToken"/></returns>
/// <exception cref="ArgumentNullException">'token' is null or empty.</exception>
/// <exception cref="ArgumentException">'token.Length * 2' > <see cref="SecurityTokenHandler.MaximumTokenSizeInBytes"/>.</exception>
/// <exception cref="ArgumentException"><see cref="CanReadToken(string)"/></exception>
/// <remarks><para>If the 'token' is in JWE Compact Serialization format, only the protected header will be deserialized.</para>
/// This method is unable to decrypt the payload. Use <see cref="ValidateToken(string, TokenValidationParameters, out SecurityToken)"/>to obtain the payload.</remarks>
public override SecurityToken ReadToken(string token)
{
return ReadJwtToken(token);
}
/// <summary>
/// Deserializes token with the provided <see cref="TokenValidationParameters"/>.
/// </summary>
/// <param name="reader"><see cref="XmlReader"/>.</param>
/// <param name="validationParameters">The current <see cref="TokenValidationParameters"/>.</param>
/// <returns>The <see cref="SecurityToken"/></returns>
/// <remarks>This method is not current supported.</remarks>
public override SecurityToken ReadToken(XmlReader reader, TokenValidationParameters validationParameters)
{
throw new NotImplementedException();
}
/// <summary>
/// Reads and validates a 'JSON Web Token' (JWT) encoded as a JWS or JWE in Compact Serialized Format.
/// </summary>
/// <param name="token">the JWT encoded as JWE or JWS</param>
/// <param name="validationParameters">Contains validation parameters for the <see cref="JwtSecurityToken"/>.</param>
/// <param name="validatedToken">The <see cref="JwtSecurityToken"/> that was validated.</param>
/// <exception cref="ArgumentNullException"><paramref name="token"/> is null or whitespace.</exception>
/// <exception cref="ArgumentNullException"><paramref name="validationParameters"/> is null.</exception>
/// <exception cref="ArgumentException"><paramref name="token"/>.Length > MamimumTokenSizeInBytes.</exception>
/// <exception cref="ArgumentException"><paramref name="token"/> does not have 3 or 5 parts.</exception>
/// <exception cref="ArgumentException"><see cref="CanReadToken(string)"/> returns false.</exception>
/// <exception cref="SecurityTokenDecryptionFailedException"><paramref name="token"/> was a JWE was not able to be decrypted.</exception>
/// <exception cref="SecurityTokenEncryptionKeyNotFoundException"><paramref name="token"/> 'kid' header claim is not null AND decryption fails.</exception>
/// <exception cref="SecurityTokenException"><paramref name="token"/> 'enc' header claim is null or empty.</exception>
/// <exception cref="SecurityTokenExpiredException"><paramref name="token"/> 'exp' claim is < DateTime.UtcNow.</exception>
/// <exception cref="SecurityTokenInvalidAudienceException"><see cref="TokenValidationParameters.ValidAudience"/> is null or whitespace and <see cref="TokenValidationParameters.ValidAudiences"/> is null. Audience is not validated if <see cref="TokenValidationParameters.ValidateAudience"/> is set to false.</exception>
/// <exception cref="SecurityTokenInvalidAudienceException"><paramref name="token"/> 'aud' claim did not match either <see cref="TokenValidationParameters.ValidAudience"/> or one of <see cref="TokenValidationParameters.ValidAudiences"/>.</exception>
/// <exception cref="SecurityTokenInvalidLifetimeException"><paramref name="token"/> 'nbf' claim is > 'exp' claim.</exception>
/// <exception cref="SecurityTokenInvalidSignatureException"><paramref name="token"/>.signature is not properly formatted.</exception>
/// <exception cref="SecurityTokenNoExpirationException"><paramref name="token"/> 'exp' claim is missing and <see cref="TokenValidationParameters.RequireExpirationTime"/> is true.</exception>
/// <exception cref="SecurityTokenNoExpirationException"><see cref="TokenValidationParameters.TokenReplayCache"/> is not null and expirationTime.HasValue is false. When a TokenReplayCache is set, tokens require an expiration time.</exception>
/// <exception cref="SecurityTokenNotYetValidException"><paramref name="token"/> 'nbf' claim is > DateTime.UtcNow.</exception>
/// <exception cref="SecurityTokenReplayAddFailedException"><paramref name="token"/> could not be added to the <see cref="TokenValidationParameters.TokenReplayCache"/>.</exception>
/// <exception cref="SecurityTokenReplayDetectedException"><paramref name="token"/> is found in the cache.</exception>
/// <returns> A <see cref="ClaimsPrincipal"/> from the JWT. Does not include claims found in the JWT header.</returns>
/// <remarks>
/// Many of the exceptions listed above are not thrown directly from this method. See <see cref="Validators"/> to examin the call graph.
/// </remarks>
public override ClaimsPrincipal ValidateToken(string token, TokenValidationParameters validationParameters, out SecurityToken validatedToken)
{
if (string.IsNullOrWhiteSpace(token))
throw LogHelper.LogArgumentNullException(nameof(token));
if (validationParameters == null)
throw LogHelper.LogArgumentNullException(nameof(validationParameters));
if (token.Length > MaximumTokenSizeInBytes)
throw LogHelper.LogExceptionMessage(new ArgumentException(LogHelper.FormatInvariant(TokenLogMessages.IDX10209, token.Length, MaximumTokenSizeInBytes)));
var tokenParts = token.Split(new char[] { '.' }, JwtConstants.MaxJwtSegmentCount + 1);
if (tokenParts.Length != JwtConstants.JwsSegmentCount && tokenParts.Length != JwtConstants.JweSegmentCount)
throw LogHelper.LogExceptionMessage(new ArgumentException(LogHelper.FormatInvariant(LogMessages.IDX12709, token)));
if (tokenParts.Length == JwtConstants.JweSegmentCount)
{
var jwtToken = ReadJwtToken(token);
var decryptedJwt = DecryptToken(jwtToken, validationParameters);
var innerToken = ValidateSignature(decryptedJwt, validationParameters);
jwtToken.InnerToken = innerToken;
validatedToken = jwtToken;
return ValidateTokenPayload(innerToken, validationParameters);
}
else
{
validatedToken = ValidateSignature(token, validationParameters);
return ValidateTokenPayload(validatedToken as JwtSecurityToken, validationParameters);
}
}
/// <summary>
/// Validates the JSON payload of a <see cref="JwtSecurityToken"/>.
/// </summary>
/// <param name="jwtToken">The token to validate.</param>
/// <param name="validationParameters">Contains validation parameters for the <see cref="JwtSecurityToken"/>.</param>
/// <returns>A <see cref="ClaimsPrincipal"/> from the jwt. Does not include the header claims.</returns>
protected ClaimsPrincipal ValidateTokenPayload(JwtSecurityToken jwtToken, TokenValidationParameters validationParameters)
{
DateTime? expires = (jwtToken.Payload.Exp == null) ? null : new DateTime?(jwtToken.ValidTo);
DateTime? notBefore = (jwtToken.Payload.Nbf == null) ? null : new DateTime?(jwtToken.ValidFrom);
ValidateLifetime(notBefore, expires, jwtToken, validationParameters);
ValidateAudience(jwtToken.Audiences, jwtToken, validationParameters);
string issuer = ValidateIssuer(jwtToken.Issuer, jwtToken, validationParameters);
ValidateTokenReplay(expires, jwtToken.RawData, validationParameters);
if (validationParameters.ValidateActor && !string.IsNullOrWhiteSpace(jwtToken.Actor))
{
SecurityToken actor = null;
ValidateToken(jwtToken.Actor, validationParameters.ActorValidationParameters ?? validationParameters, out actor);
}
ValidateIssuerSecurityKey(jwtToken.SigningKey, jwtToken, validationParameters);
var identity = CreateClaimsIdentity(jwtToken, issuer, validationParameters);
if (validationParameters.SaveSigninToken)
identity.BootstrapContext = jwtToken.RawData;
LogHelper.LogInformation(TokenLogMessages.IDX10241, jwtToken.RawData);
return new ClaimsPrincipal(identity);
}
/// <summary>
/// Serializes a <see cref="JwtSecurityToken"/> into a JWT in Compact Serialization Format.
/// </summary>
/// <param name="token"><see cref="JwtSecurityToken"/> to serialize.</param>
/// <remarks>
/// <para>The JWT will be serialized as a JWE or JWS.</para>
/// <para><see cref="JwtSecurityToken.Payload"/> will be used to create the JWT. If there is an inner token, the inner token's payload will be used.</para>
/// <para>If either <see cref="JwtSecurityToken.SigningCredentials"/> or <see cref="JwtSecurityToken.InnerToken"/>.SigningCredentials are set, the JWT will be signed.</para>
/// <para>If <see cref="JwtSecurityToken.EncryptingCredentials"/> is set, a JWE will be created using the JWT above as the plaintext.</para>
/// </remarks>
/// <exception cref="ArgumentNullException">'token' is null.</exception>
/// <exception cref="ArgumentException">'token' is not a not <see cref="JwtSecurityToken"/>.</exception>
/// <exception cref="SecurityTokenEncryptionFailedException">both <see cref="JwtSecurityToken.SigningCredentials"/> and <see cref="JwtSecurityToken.InnerToken"/> are set.</exception>
/// <exception cref="SecurityTokenEncryptionFailedException">both <see cref="JwtSecurityToken.InnerToken"/> and <see cref="JwtSecurityToken.InnerToken"/>.EncryptingCredentials are set.</exception>
/// <exception cref="SecurityTokenEncryptionFailedException">if <see cref="JwtSecurityToken.InnerToken"/> is set and <see cref="JwtSecurityToken.EncryptingCredentials"/> is not set.</exception>
/// <returns>A JWE or JWS in 'Compact Serialization Format'.</returns>
public override string WriteToken(SecurityToken token)
{
if (token == null)
throw LogHelper.LogArgumentNullException(nameof(token));
JwtSecurityToken jwtToken = token as JwtSecurityToken;
if (jwtToken == null)
throw LogHelper.LogExceptionMessage(new ArgumentException(LogHelper.FormatInvariant(LogMessages.IDX12706, GetType(), typeof(JwtSecurityToken), token.GetType()), nameof(token)));
var encodedPayload = jwtToken.EncodedPayload;
var encodedSignature = string.Empty;
var encodedHeader = string.Empty;
if (jwtToken.InnerToken != null)
{
if (jwtToken.SigningCredentials != null)
throw LogHelper.LogExceptionMessage(new SecurityTokenEncryptionFailedException(LogMessages.IDX12736));
if (jwtToken.InnerToken.Header.EncryptingCredentials != null)
throw LogHelper.LogExceptionMessage(new SecurityTokenEncryptionFailedException(LogMessages.IDX12737));
if (jwtToken.Header.EncryptingCredentials == null)
throw LogHelper.LogExceptionMessage(new SecurityTokenEncryptionFailedException(LogMessages.IDX12735));
if (jwtToken.InnerToken.SigningCredentials != null)
encodedSignature = CreateEncodedSignature(string.Concat(jwtToken.InnerToken.EncodedHeader, ".", jwtToken.EncodedPayload), jwtToken.InnerToken.SigningCredentials);
return EncryptToken(new JwtSecurityToken(jwtToken.InnerToken.Header, jwtToken.InnerToken.Payload, jwtToken.InnerToken.EncodedHeader, encodedPayload, encodedSignature), jwtToken.EncryptingCredentials).RawData;
}
// if EncryptingCredentials isn't set, then we need to create JWE
// first create a new header with the SigningCredentials, Create a JWS then wrap it in a JWE
var header = jwtToken.EncryptingCredentials == null ? jwtToken.Header : new JwtHeader(jwtToken.SigningCredentials);
encodedHeader = header.Base64UrlEncode();
if (jwtToken.SigningCredentials != null)
encodedSignature = CreateEncodedSignature(string.Concat(encodedHeader, ".", encodedPayload), jwtToken.SigningCredentials);
if (jwtToken.EncryptingCredentials != null)
return EncryptToken(new JwtSecurityToken(header, jwtToken.Payload, encodedHeader, encodedPayload, encodedSignature), jwtToken.EncryptingCredentials).RawData;
else
return string.Concat(encodedHeader, ".", encodedPayload, ".", encodedSignature);
}
/// <summary>
/// Produces a signature over the 'input'.
/// </summary>
/// <param name="input">String to be signed</param>
/// <param name="signingCredentials">The <see cref="SigningCredentials"/> that contain crypto specs used to sign the token.</param>
/// <returns>The bse64urlendcoded signature over the bytes obtained from UTF8Encoding.GetBytes( 'input' ).</returns>
/// <exception cref="ArgumentNullException">'input' or 'signingCredentials' is null.</exception>
internal static string CreateEncodedSignature(string input, SigningCredentials signingCredentials)
{
if (input == null)
throw LogHelper.LogArgumentNullException(nameof(input));
if (signingCredentials == null)
throw LogHelper.LogArgumentNullException(nameof(signingCredentials));
var cryptoProviderFactory = signingCredentials.CryptoProviderFactory ?? signingCredentials.Key.CryptoProviderFactory;
var signatureProvider = cryptoProviderFactory.CreateForSigning(signingCredentials.Key, signingCredentials.Algorithm);
if (signatureProvider == null)
throw LogHelper.LogExceptionMessage(new InvalidOperationException(LogHelper.FormatInvariant(TokenLogMessages.IDX10636, (signingCredentials.Key == null ? "Null" : signingCredentials.Key.ToString()), (signingCredentials.Algorithm ?? "Null"))));
try
{
LogHelper.LogVerbose(LogMessages.IDX12645);
return Base64UrlEncoder.Encode(signatureProvider.Sign(Encoding.UTF8.GetBytes(input)));
}
finally
{
cryptoProviderFactory.ReleaseSignatureProvider(signatureProvider);
}
}
/// <summary>
/// Obtains a <see cref="SignatureProvider "/> and validates the signature.
/// </summary>
/// <param name="encodedBytes">Bytes to validate.</param>
/// <param name="signature">Signature to compare against.</param>
/// <param name="key"><See cref="SecurityKey"/> to use.</param>
/// <param name="algorithm">Crypto algorithm to use.</param>
/// <param name="validationParameters">Priority will be given to <see cref="TokenValidationParameters.CryptoProviderFactory"/> over <see cref="SecurityKey.CryptoProviderFactory"/>.</param>
/// <returns>'true' if signature is valid.</returns>
private bool ValidateSignature(byte[] encodedBytes, byte[] signature, SecurityKey key, string algorithm, TokenValidationParameters validationParameters)
{
var cryptoProviderFactory = validationParameters.CryptoProviderFactory ?? key.CryptoProviderFactory;
if (!cryptoProviderFactory.IsSupportedAlgorithm(algorithm, key))
{
LogHelper.LogInformation(LogMessages.IDX12508, algorithm, key);
return false;
}
var signatureProvider = cryptoProviderFactory.CreateForVerifying(key, algorithm);
if (signatureProvider == null)
throw LogHelper.LogExceptionMessage(new InvalidOperationException(LogHelper.FormatInvariant(TokenLogMessages.IDX10647, (key == null ? "Null" : key.ToString()), (algorithm == null ? "Null" : algorithm))));
try
{
return signatureProvider.Verify(encodedBytes, signature);
}
finally
{
cryptoProviderFactory.ReleaseSignatureProvider(signatureProvider);
}
}
/// <summary>
/// Validates that the signature, if found or required, is valid.
/// </summary>
/// <param name="token">A JWS token.</param>
/// <param name="validationParameters"><see cref="TokenValidationParameters"/> that contains signing keys.</param>
/// <exception cref="ArgumentNullException">If 'jwt' is null or whitespace.</exception>
/// <exception cref="ArgumentNullException">If 'validationParameters' is null.</exception>
/// <exception cref="SecurityTokenValidationException">If a signature is not found and <see cref="TokenValidationParameters.RequireSignedTokens"/> is true.</exception>
/// <exception cref="SecurityTokenSignatureKeyNotFoundException">If the 'token' has a key identifier and none of the <see cref="SecurityKey"/>(s) provided result in a validated signature.
/// This can indicate that a key refresh is required.</exception>
/// <exception cref="SecurityTokenInvalidSignatureException">If after trying all the <see cref="SecurityKey"/>(s), none result in a validated signature AND the 'token' does not have a key identifier.</exception>
/// <returns>A <see cref="JwtSecurityToken"/> that has the signature validated if token was signed.</returns>
/// <remarks><para>If the 'token' is signed, the signature is validated even if <see cref="TokenValidationParameters.RequireSignedTokens"/> is false.</para>
/// <para>If the 'token' signature is validated, then the <see cref="JwtSecurityToken.SigningKey"/> will be set to the key that signed the 'token'.It is the responsibility of <see cref="TokenValidationParameters.SignatureValidator"/> to set the <see cref="JwtSecurityToken.SigningKey"/></para></remarks>
protected virtual JwtSecurityToken ValidateSignature(string token, TokenValidationParameters validationParameters)
{
if (string.IsNullOrWhiteSpace(token))
throw LogHelper.LogArgumentNullException(nameof(token));
if (validationParameters == null)
throw LogHelper.LogArgumentNullException(nameof(validationParameters));
if (validationParameters.SignatureValidator != null)
{
var validatedJwtToken = validationParameters.SignatureValidator(token, validationParameters);
if (validatedJwtToken == null)
throw LogHelper.LogExceptionMessage(new SecurityTokenInvalidSignatureException(LogHelper.FormatInvariant(TokenLogMessages.IDX10505, token)));
var validatedJwt = validatedJwtToken as JwtSecurityToken;
if (validatedJwt == null)
throw LogHelper.LogExceptionMessage(new SecurityTokenInvalidSignatureException(LogHelper.FormatInvariant(TokenLogMessages.IDX10506, typeof(JwtSecurityToken), validatedJwtToken.GetType(), token)));
return validatedJwt;
}
JwtSecurityToken jwtToken = null;
if (validationParameters.TokenReader != null)
{
var securityToken = validationParameters.TokenReader(token, validationParameters);
if (securityToken == null)
throw LogHelper.LogExceptionMessage(new SecurityTokenInvalidSignatureException(LogHelper.FormatInvariant(TokenLogMessages.IDX10510, token)));
jwtToken = securityToken as JwtSecurityToken;
if (jwtToken == null)
throw LogHelper.LogExceptionMessage(new SecurityTokenInvalidSignatureException(LogHelper.FormatInvariant(TokenLogMessages.IDX10509, typeof(JwtSecurityToken), securityToken.GetType(), token)));
}
else
{
jwtToken = ReadJwtToken(token);
}
byte[] encodedBytes = Encoding.UTF8.GetBytes(jwtToken.RawHeader + "." + jwtToken.RawPayload);
if (string.IsNullOrEmpty(jwtToken.RawSignature))
{
if (validationParameters.RequireSignedTokens)
throw LogHelper.LogExceptionMessage(new SecurityTokenInvalidSignatureException(LogHelper.FormatInvariant(TokenLogMessages.IDX10504, token)));
else
return jwtToken;
}
bool keyMatched = false;
IEnumerable<SecurityKey> keys = null;
if (validationParameters.IssuerSigningKeyResolver != null)
{
keys = validationParameters.IssuerSigningKeyResolver(token, jwtToken, jwtToken.Header.Kid, validationParameters);
}
else
{
var key = ResolveIssuerSigningKey(token, jwtToken, validationParameters);
if (key != null)
{
keyMatched = true;
keys = new List<SecurityKey> { key };
}
}