-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathJwtFactory.cs
More file actions
387 lines (335 loc) · 10.1 KB
/
JwtFactory.cs
File metadata and controls
387 lines (335 loc) · 10.1 KB
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
using System;
using System.Collections.Generic;
using System.Runtime.CompilerServices;
using System.Security.Cryptography;
using Waher.Runtime.Collections;
using Waher.Security.JWS;
namespace Waher.Security.JWT
{
/// <summary>
/// Reason a token is not valid.
/// </summary>
public enum Reason
{
/// <summary>
/// No reason
/// </summary>
None,
/// <summary>
/// No algorithm defined.
/// </summary>
NoAlgorithm,
/// <summary>
/// Algorithm not supported
/// </summary>
UnsupportedAlgorithm,
/// <summary>
/// No signature
/// </summary>
NoSignature,
/// <summary>
/// Token expired
/// </summary>
Expired,
/// <summary>
/// Too early to use token
/// </summary>
TooEarly,
/// <summary>
/// Signature invalid
/// </summary>
InvalidSignature,
/// <summary>
/// Token has been deprecated
/// </summary>
Deprecated
}
/// <summary>
/// A factory that can create and validate JWT tokens.
/// </summary>
public class JwtFactory : IDisposable
{
private static readonly Dictionary<DateTime, ChunkedList<string>> deprecatedByExpiry = new Dictionary<DateTime, ChunkedList<string>>();
private IJwsAlgorithm algorithm;
private TimeSpan timeMargin = TimeSpan.Zero;
private readonly KeyValuePair<string, object>[] header = new KeyValuePair<string, object>[]
{
new KeyValuePair<string, object>("typ", "JWT")
};
/// <summary>
/// A factory that can create and validate JWT tokens.
/// </summary>
/// <param name="Algorithm">JWS Algorithm to use for signatures</param>
public JwtFactory(IJwsAlgorithm Algorithm)
{
this.algorithm = Algorithm;
}
/// <summary>
/// A factory that can create and validate JWT tokens using the HMAC-SHA256 algorithm.
/// </summary>
[Obsolete("Use any of the static Create methods instead, or specify the JWS algorithm explicitly.")]
public JwtFactory()
: this(new HmacSha256())
{
}
/// <summary>
/// A factory that can create and validate JWT tokens using the HMAC-SHA256 algorithm.
/// </summary>
/// <param name="Secret">Secret used for creating and validating signatures.</param>
[Obsolete("Use any of the static Create methods instead, or specify the JWS algorithm explicitly.")]
public JwtFactory(byte[] Secret)
: this(new HmacSha256(Secret))
{
}
/// <summary>
/// Creates a JWT factory that can create and validate JWT tokens using the HMAC-SHA256 algorithm.
/// </summary>
public static JwtFactory CreateHmacSha256()
{
return new JwtFactory(new HmacSha256());
}
/// <summary>
/// Creates a JWT factory that can create and validate JWT tokens using the HMAC-SHA256 algorithm.
/// </summary>
/// <param name="Secret">Secret used for creating and validating signatures.</param>
public static JwtFactory CreateHmacSha256(byte[] Secret)
{
return new JwtFactory(new HmacSha256(Secret));
}
/// <summary>
/// Creates a JWT factory that can create and validate JWT tokens using the RSA256 algorithm.
/// </summary>
public static JwtFactory CreateRsa256()
{
return new JwtFactory(new RsaSsaPkcsSha256());
}
/// <summary>
/// Creates a JWT factory that can create and validate JWT tokens using the RSA256 algorithm.
/// </summary>
/// <param name="KeySize">Key size.</param>
public static JwtFactory CreateRsa256(int KeySize)
{
return new JwtFactory(new RsaSsaPkcsSha256(KeySize));
}
/// <summary>
/// Creates a JWT factory that can create and validate JWT tokens using the RSA256 algorithm.
/// </summary>
/// <param name="Algorithm">RSA Algorithm used for creating and validating signatures.</param>
public static JwtFactory CreatRsa256(RSA Algorithm)
{
return new JwtFactory(new RsaSsaPkcsSha256(Algorithm));
}
/// <summary>
/// Creates a JWT factory that can create and validate JWT tokens using the RSA256 algorithm.
/// </summary>
/// <param name="Parameters">RSA Parameters</param>
public static JwtFactory CreateRsa256(RSAParameters Parameters)
{
return new JwtFactory(new RsaSsaPkcsSha256(Parameters));
}
/// <summary>
/// Time margin in validity checks, to cover for unsynchronized clocks.
/// By default, it is set to <see cref="TimeSpan.Zero"/>.
/// </summary>
public TimeSpan TimeMargin
{
get => this.timeMargin;
set
{
if (value < TimeSpan.Zero)
throw new ArgumentOutOfRangeException("Time margins must be non-negative.", nameof(this.TimeMargin));
this.timeMargin = value;
}
}
/// <summary>
/// <see cref="IDisposable.Dispose"/>
/// </summary>
public void Dispose()
{
this.algorithm?.Dispose();
this.algorithm = null;
}
/// <summary>
/// If the factory has been disposed.
/// </summary>
public bool Disposed => this.algorithm is null;
/// <summary>
/// Checks if a token is valid and signed by the factory.
/// </summary>
/// <param name="Token">JWT token.</param>
/// <returns>If the token is correctly signed and valid.</returns>
public bool IsValid(JwtToken Token)
{
return this.IsValid(Token, out _);
}
/// <summary>
/// Checks if a token is valid and signed by the factory.
/// </summary>
/// <param name="Token">JWT token.</param>
/// <param name="Reason">Reason token is not valid.</param>
/// <returns>If the token is correctly signed and valid.</returns>
public bool IsValid(JwtToken Token, out Reason Reason)
{
if (Token.Algorithm is null)
{
Reason = Reason.NoAlgorithm;
return false;
}
else if (Token.Algorithm is null)
{
Reason = Reason.UnsupportedAlgorithm;
return false;
}
else if (Token.Signature is null)
{
Reason = Reason.NoSignature;
return false;
}
if (Token.Expiration.HasValue || Token.NotBefore.HasValue)
{
DateTime Now = DateTime.UtcNow;
if (Token.Expiration.HasValue && Now >= Token.Expiration.Value + this.timeMargin)
{
Reason = Reason.Expired;
return false;
}
if (Token.NotBefore.HasValue && Now < Token.NotBefore.Value - this.timeMargin)
{
Reason = Reason.TooEarly;
return false;
}
}
try
{
if (!this.algorithm.IsValid(Token.Header, Token.Payload, Token.Signature))
{
Reason = Reason.InvalidSignature;
return false;
}
}
catch (Exception)
{
Reason = Reason.UnsupportedAlgorithm;
return false;
}
if (IsDeprecated(Token))
{
Reason = Reason.Deprecated;
return false;
}
Reason = Reason.None;
return true;
}
/// <summary>
/// Creates a new JWT token.
/// </summary>
/// <param name="Claims">Claims to include in token.
///
/// For a list of public claim names, see:
/// https://www.iana.org/assignments/jwt/jwt.xhtml</param>
/// <returns>JWT token.</returns>
public string Create(params KeyValuePair<string, object>[] Claims)
{
return this.Create(null, (IEnumerable<KeyValuePair<string, object>>)Claims);
}
/// <summary>
/// Creates a new JWT token.
/// </summary>
/// <param name="Claims">Claims to include in token.
///
/// For a list of public claim names, see:
/// https://www.iana.org/assignments/jwt/jwt.xhtml</param>
/// <returns>JWT token.</returns>
public string Create(IEnumerable<KeyValuePair<string, object>> Claims)
{
return this.Create(null, Claims);
}
/// <summary>
/// Creates a new JWT token.
/// </summary>
/// <param name="Headers">Optional additional headers to include in token.</param>
/// <param name="Claims">Claims to include in token.
///
/// For a list of public claim names, see:
/// https://www.iana.org/assignments/jwt/jwt.xhtml</param>
/// <returns>JWT token.</returns>
public string Create(KeyValuePair<string, object>[] Headers, KeyValuePair<string, object>[] Claims)
{
return this.Create((IEnumerable<KeyValuePair<string, object>>)Headers, (IEnumerable<KeyValuePair<string, object>>)Claims);
}
/// <summary>
/// Creates a new JWT token.
/// </summary>
/// <param name="Headers">Optional additional headers to include in token.</param>
/// <param name="Claims">Claims to include in token.
///
/// For a list of public claim names, see:
/// https://www.iana.org/assignments/jwt/jwt.xhtml</param>
/// <returns>JWT token.</returns>
public string Create(IEnumerable<KeyValuePair<string, object>> Headers, IEnumerable<KeyValuePair<string, object>> Claims)
{
IEnumerable<KeyValuePair<string, object>> Headers2;
if (Headers is null)
Headers2 = this.header;
else
{
ChunkedList<KeyValuePair<string, object>> Union = new ChunkedList<KeyValuePair<string, object>>();
Union.AddRange(this.header);
foreach (KeyValuePair<string, object> P in Headers)
Union.Add(P);
Headers2 = Union.ToArray();
}
this.algorithm.Sign(Headers2, Claims, out string Header, out string Payload,
out string Signature);
return Header + "." + Payload + "." + Signature;
}
/// <summary>
/// Deprecates a token.
/// </summary>
/// <param name="Token">Token to deprecate.</param>
public static void Deprecate(JwtToken Token)
{
lock (deprecatedByExpiry)
{
DateTime Expiry = Token.Expiration ?? DateTime.MaxValue;
if (!deprecatedByExpiry.TryGetValue(Expiry, out ChunkedList<string> List))
{
List = new ChunkedList<string>();
deprecatedByExpiry[Expiry] = List;
}
if (!List.Contains(Token.Token))
List.Add(Token.Token);
ChunkedList<DateTime> ToRemove = null;
DateTime Yesterday = DateTime.UtcNow.AddDays(-1);
foreach (KeyValuePair<DateTime, ChunkedList<string>> P in deprecatedByExpiry)
{
if (P.Key > Yesterday)
break;
if (ToRemove is null)
ToRemove = new ChunkedList<DateTime>();
ToRemove.Add(P.Key);
}
if (!(ToRemove is null))
{
foreach (DateTime TP in ToRemove)
deprecatedByExpiry.Remove(TP);
}
}
}
/// <summary>
/// Checks if a token is deprecated.
/// </summary>
/// <param name="Token">Token</param>
/// <returns>If token has been deprecated.</returns>
public static bool IsDeprecated(JwtToken Token)
{
lock (deprecatedByExpiry)
{
DateTime Expiry = Token.Expiration ?? DateTime.MaxValue;
if (!deprecatedByExpiry.TryGetValue(Expiry, out ChunkedList<string> List))
return false;
return List.Contains(Token.Token);
}
}
}
}