-
Notifications
You must be signed in to change notification settings - Fork 353
Expand file tree
/
Copy pathtoken-encoder.service.ts
More file actions
1373 lines (1172 loc) · 39.9 KB
/
token-encoder.service.ts
File metadata and controls
1373 lines (1172 loc) · 39.9 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
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
import {
DefaultTokensValues,
DefaultTokenWithKeysModel,
DefaultTokenWithSecretModel,
} from "@/features/common/values/default-tokens.values";
import { CompactJWSHeaderParameters } from "jose";
import {
DecodedJwtHeaderModel,
DecodedJwtPayloadModel,
} from "@/features/common/models/decoded-token.model";
import {
checkHmacSecretLength,
createUnsecuredJwt,
getAlgSize,
getValidatedEncoderHeader,
isDigitalSignatureAlg,
isHmacAlg,
isNoneAlg,
isValidBase64UrlString,
parseStringIntoValidJsonObject,
signWithAsymmetricPrivateKey,
signWithSymmetricSecretKey,
} from "@/features/common/services/jwt.service";
import { EncodingValues } from "@/features/common/values/encoding.values";
import { err, ok, Result } from "neverthrow";
import { DebuggerErrorModel } from "@/features/common/models/debugger-error.model";
import {
getAlgName,
safeJsonParse,
safeJsonStringify,
} from "@/features/common/services/utils";
import { EncoderStoreState } from "@/features/encoder/services/encoder.store";
import { DebuggerTaskValues } from "@/features/common/values/debugger-task.values";
import { DebuggerInputValues } from "@/features/common/values/debugger-input.values";
import { AsymmetricKeyFormatValues } from "@/features/common/values/asymmetric-key-format.values";
import { useDebuggerStore } from "@/features/debugger/services/debugger.store";
import { SigningAlgCategoryValues } from "@/features/common/values/signing-alg-category.values";
import { EncoderInputsModel } from "@/features/debugger/models/encoder-inputs.model";
import { EncoderResult } from "@/features/common/models/encoder-result.model";
type EncodingHeaderErrors = {
headerErrors: string[] | null;
signingErrors: string[] | null;
};
type EncodingPayloadErrors = {
payloadErrors: string[] | null;
};
type EncodingSymmetricSecretKeyErrors = {
headerErrors: string[] | null;
signingErrors: string[] | null;
payloadErrors: string[] | null;
encodingErrors: string[] | null;
symmetricSecretKeyErrors: string[] | null;
};
type EncodingAsymmetricPrivateKeyErrors = {
headerErrors: string[] | null;
signingErrors: string[] | null;
payloadErrors: string[] | null;
encodingErrors: string[] | null;
};
type EncodingJwtErrors = {
headerErrors: string[] | null;
signingErrors: string[] | null;
payloadErrors: string[] | null;
encodingErrors: string[] | null;
};
class _TokenEncoderService {
async selectEncodingExample(
algorithmPickerOptionValue: string,
): Promise<Partial<EncoderStoreState>> {
const stateUpdate: Partial<EncoderStoreState> = {
signingErrors: null,
headerErrors: null,
headerWarnings: null,
payloadErrors: null,
encodingWarnings: null,
};
const jwt = DefaultTokensValues[algorithmPickerOptionValue];
const algorithm = getAlgName(algorithmPickerOptionValue);
const header = isNoneAlg(algorithm)
? {
alg: algorithm,
}
: {
alg: algorithm,
typ: "JWT",
};
/**
* We need to update the value of this payload; otherwise, the controlledPayload observable
* won't emit anything as its value would not change.
*/
const payload = {
sub: "1234567890",
name: "John Doe",
admin: true,
/**
* iat must be numeric value representing the number of seconds from
* 1970-01-01T00:00:00Z UTC until the specified UTC date/time,
* ignoring leap seconds.
*/
iat: Math.floor(new Date().getTime() / 1000) + 60 * 60 * 24,
};
stateUpdate.exampleAlg = algorithmPickerOptionValue;
stateUpdate.alg = algorithm;
const stringifiedHeaderResult = safeJsonStringify(header, null, 2);
const stringifiedPayloadResult = safeJsonStringify(payload, null, 2);
if (stringifiedHeaderResult.isErr()) {
stateUpdate.headerErrors = [
"Given header is not a valid JSON object representation.",
];
stateUpdate.signingErrors = [
"Fix any errors in the JWT header to enable editing this field.",
];
}
if (stringifiedHeaderResult.isOk()) {
stateUpdate.header = stringifiedHeaderResult.value;
stateUpdate.controlledHeader = {
id: new Date().valueOf(),
value: stringifiedHeaderResult.value,
};
}
if (stringifiedPayloadResult.isErr()) {
stateUpdate.payloadErrors = [
"Given payload is not a valid JSON object representation.",
];
}
if (stringifiedPayloadResult.isOk()) {
stateUpdate.payload = stringifiedPayloadResult.value;
stateUpdate.controlledPayload = {
id: new Date().valueOf(),
value: stringifiedPayloadResult.value,
};
}
if (isNoneAlg(algorithm)) {
const encodeJWTResult = await this.encodeUnsecuredJWT(header, payload);
if (encodeJWTResult.isErr()) {
stateUpdate.headerErrors = encodeJWTResult.error.headerErrors;
stateUpdate.payloadErrors = encodeJWTResult.error.payloadErrors;
stateUpdate.signingErrors = encodeJWTResult.error.signingErrors;
stateUpdate.encodingErrors = encodeJWTResult.error.encodingErrors;
}
if (encodeJWTResult.isOk()) {
stateUpdate.jwt = encodeJWTResult.value.jwt.trim();
stateUpdate.encodingWarnings = [
`This is an Unsecured JWT as defined by [Section 6 of RFC 7519](https://datatracker.ietf.org/doc/html/rfc7519#section-6).`,
];
}
return {
...stateUpdate,
};
}
if (isHmacAlg(algorithm)) {
const secret = (jwt as DefaultTokenWithSecretModel).secret;
const encodeJWTResult = await this.encodeJWTWithHmacAlg(
header,
payload,
secret,
EncodingValues.UTF8,
);
if (encodeJWTResult.isErr()) {
stateUpdate.signingErrors = [encodeJWTResult.error.message];
}
if (encodeJWTResult.isOk()) {
stateUpdate.jwt = encodeJWTResult.value.jwt.trim();
stateUpdate.signingErrors = encodeJWTResult.value.signingErrors;
}
return {
...stateUpdate,
symmetricSecretKey: secret,
symmetricSecretKeyEncoding: EncodingValues.UTF8,
controlledSymmetricSecretKey: {
id: new Date().valueOf(),
value: secret,
encoding: EncodingValues.UTF8,
},
};
}
if (isDigitalSignatureAlg(algorithm)) {
const digitallySignedToken = jwt as DefaultTokenWithKeysModel;
const privateKey = digitallySignedToken.privateKey;
const encodeJWTResult = await this.encodeJWTWithDigitalSignatureAlg(
header,
payload,
privateKey,
AsymmetricKeyFormatValues.PEM,
);
if (encodeJWTResult.isErr()) {
stateUpdate.signingErrors = [encodeJWTResult.error.message];
}
if (encodeJWTResult.isOk()) {
stateUpdate.jwt = encodeJWTResult.value.jwt.trim();
useDebuggerStore.getState().setStash$({
asymmetricPublicKey: digitallySignedToken.publicKey,
asymmetricPublicKeyFormat: digitallySignedToken.publicKeyFormat,
});
}
return {
...stateUpdate,
asymmetricPrivateKey: privateKey,
asymmetricPrivateKeyFormat: AsymmetricKeyFormatValues.PEM,
controlledAsymmetricPrivateKey: {
id: new Date().valueOf(),
value: privateKey,
format: AsymmetricKeyFormatValues.PEM,
},
};
}
return stateUpdate;
}
async loadEncoderInput(
params: EncoderInputsModel,
): Promise<Partial<EncoderStoreState>> {
const stateUpdate: Partial<EncoderStoreState> = {
signingErrors: null,
headerErrors: null,
headerWarnings: null,
payloadErrors: null,
encodingWarnings: null,
jwt: null,
};
if (params.algType === SigningAlgCategoryValues.SYMMETRIC) {
stateUpdate.symmetricSecretKey = params.symmetricSecretKey;
stateUpdate.symmetricSecretKeyEncoding =
params.symmetricSecretKeyEncoding;
stateUpdate.controlledSymmetricSecretKey = {
id: new Date().valueOf(),
value: params.symmetricSecretKey,
encoding: params.symmetricSecretKeyEncoding,
};
}
if (params.algType === SigningAlgCategoryValues.ASYMMETRIC) {
stateUpdate.asymmetricPrivateKey = params.asymmetricPrivateKey;
stateUpdate.asymmetricPrivateKeyFormat =
params.asymmetricPrivateKeyFormat;
stateUpdate.controlledAsymmetricPrivateKey = {
id: new Date().valueOf(),
value: params.asymmetricPrivateKey,
format: params.asymmetricPrivateKeyFormat,
};
}
stateUpdate.alg = params.alg;
stateUpdate.header = params.header;
stateUpdate.controlledHeader = {
id: new Date().valueOf(),
value: params.header,
};
stateUpdate.payload = params.payload;
stateUpdate.controlledPayload = {
id: new Date().valueOf(),
value: params.payload,
};
const safeJsonParseHeaderResult = safeJsonParse(params.header);
const safeJsonParsePayloadResult = safeJsonParse(params.payload);
if (
safeJsonParseHeaderResult.isErr() &&
safeJsonParsePayloadResult.isErr()
) {
stateUpdate.headerErrors = [
"Given header is not a valid JSON object representation.",
];
stateUpdate.signingErrors = [
"Fix any errors in the JWT header to enable editing this field.",
];
stateUpdate.payloadErrors = [
"Given payload is not a valid JSON object representation.",
];
return {
...stateUpdate,
};
}
if (safeJsonParseHeaderResult.isErr()) {
stateUpdate.headerErrors = [
"Given header is not a valid JSON object representation.",
];
stateUpdate.signingErrors = [
"Fix any errors in the JWT header to enable editing this field.",
];
return {
...stateUpdate,
};
}
if (safeJsonParsePayloadResult.isErr()) {
stateUpdate.payloadErrors = [
"The payload must be a valid JSON object. [Learn more](https://datatracker.ietf.org/doc/html/rfc7515#section-4.1.1).",
safeJsonParsePayloadResult.error,
];
if (params.algType === SigningAlgCategoryValues.NOOP) {
stateUpdate.headerErrors = [
`Missing or invalid cryptographic algorithm. Only use "alg" parameter values in the header as defined by [RFC 7518 (JSON Web Algorithms)](https://datatracker.ietf.org/doc/html/rfc7518#section-3.1).`,
];
}
return {
...stateUpdate,
};
}
const header = safeJsonParseHeaderResult.value;
const payload = safeJsonParsePayloadResult.value;
if (params.algType === SigningAlgCategoryValues.NONE) {
const encodeUnsecuredJWTResult = await this.encodeUnsecuredJWT(
header,
payload,
);
if (encodeUnsecuredJWTResult.isErr()) {
return {
...stateUpdate,
...encodeUnsecuredJWTResult.error,
};
}
if (encodeUnsecuredJWTResult.isOk()) {
stateUpdate.encodingWarnings = [
`This is an Unsecured JWT as defined by [Section 6 of RFC 7519](https://datatracker.ietf.org/doc/html/rfc7519#section-6).`,
];
stateUpdate.jwt = encodeUnsecuredJWTResult.value.jwt.trim();
}
return {
...stateUpdate,
};
}
if (params.algType === SigningAlgCategoryValues.SYMMETRIC) {
const encodeJWTResult = await this.encodeJWTWithHmacAlg(
header,
payload,
params.symmetricSecretKey,
params.symmetricSecretKeyEncoding,
);
if (encodeJWTResult.isErr()) {
stateUpdate.signingErrors = [encodeJWTResult.error.message];
}
if (encodeJWTResult.isOk()) {
stateUpdate.jwt = encodeJWTResult.value.jwt.trim();
}
return {
...stateUpdate,
symmetricSecretKey: params.symmetricSecretKey,
symmetricSecretKeyEncoding: params.symmetricSecretKeyEncoding,
controlledSymmetricSecretKey: {
id: new Date().valueOf(),
value: params.symmetricSecretKey,
encoding: params.symmetricSecretKeyEncoding,
},
};
}
if (params.algType === SigningAlgCategoryValues.ASYMMETRIC) {
const privateKey = params.asymmetricPrivateKey || "";
const encodeJWTResult = await this.encodeJWTWithDigitalSignatureAlg(
header,
payload,
privateKey,
params.asymmetricPrivateKeyFormat,
);
if (encodeJWTResult.isErr()) {
stateUpdate.signingErrors = [encodeJWTResult.error.message];
}
if (encodeJWTResult.isOk()) {
stateUpdate.jwt = encodeJWTResult.value.jwt.trim();
}
return {
...stateUpdate,
asymmetricPrivateKey: privateKey,
asymmetricPrivateKeyFormat: params.asymmetricPrivateKeyFormat,
controlledAsymmetricPrivateKey: {
id: new Date().valueOf(),
value: privateKey,
format: params.asymmetricPrivateKeyFormat,
},
};
}
if (params.algType === SigningAlgCategoryValues.NOOP) {
stateUpdate.headerErrors = [
`Missing or invalid cryptographic algorithm. Only use "alg" parameter values in the header as defined by [RFC 7518 (JSON Web Algorithms)](https://datatracker.ietf.org/doc/html/rfc7518#section-3.1).`,
];
return {
...stateUpdate,
};
}
return stateUpdate;
}
private async encodeUnsecuredJWT(
header: DecodedJwtHeaderModel,
payload: DecodedJwtPayloadModel,
): Promise<
Result<
{
jwt: string;
},
EncodingJwtErrors
>
> {
if (!isNoneAlg(header.alg)) {
const errors: EncodingJwtErrors = {
headerErrors: [
`Only use the "alg" parameter set to "none" in the header to create an Unsecured JWT as defined by [Section 6 of RFC 7519](https://datatracker.ietf.org/doc/html/rfc7519#section-6).`,
],
payloadErrors: null,
signingErrors: null,
encodingErrors: null,
};
return err(errors);
}
const createUnsecuredJwtResult = await createUnsecuredJwt(header, payload);
if (createUnsecuredJwtResult.isErr()) {
const errors: EncodingJwtErrors = {
headerErrors: null,
payloadErrors: [createUnsecuredJwtResult.error.message],
signingErrors: null,
encodingErrors: null,
};
return err(errors);
}
return ok({
jwt: createUnsecuredJwtResult.value,
});
}
private async encodeJWTWithHmacAlg(
header: DecodedJwtHeaderModel,
payload: DecodedJwtPayloadModel,
key: string,
encodingFormat: EncodingValues,
): Promise<Result<EncoderResult, DebuggerErrorModel>> {
if (!isHmacAlg(header.alg)) {
return err({
task: DebuggerTaskValues.ENCODE,
input: DebuggerInputValues.HEADER,
message: `Invalid MAC algorithm. Only use MAC "alg" parameter values in the header as defined by [RFC 7518 (JSON Web Algorithms)](https://datatracker.ietf.org/doc/html/rfc7518#section-3.1).`,
});
}
if (!key) {
return err({
task: DebuggerTaskValues.ENCODE,
input: DebuggerInputValues.KEY,
message: "Secret must not be empty.",
});
}
const getAlgSizeResult = getAlgSize(header.alg);
if (getAlgSizeResult.isErr()) {
return err({
task: DebuggerTaskValues.ENCODE,
input: DebuggerInputValues.KEY,
message: getAlgSizeResult.error,
});
}
const checkHmacSecretLengthResult = checkHmacSecretLength(
key,
getAlgSizeResult.value.size,
encodingFormat,
);
const signingError = checkHmacSecretLengthResult.isErr()
? [checkHmacSecretLengthResult.error.message]
: null;
const signWithSymmetricSecretKeyResult = await signWithSymmetricSecretKey(
header as CompactJWSHeaderParameters,
payload,
key,
encodingFormat,
);
if (signWithSymmetricSecretKeyResult.isErr()) {
return err({
task: DebuggerTaskValues.ENCODE,
input: DebuggerInputValues.KEY,
message: signWithSymmetricSecretKeyResult.error.message,
});
}
return ok<EncoderResult>({
jwt: signWithSymmetricSecretKeyResult.value,
signingErrors: signingError,
});
}
private async encodeJWTWithDigitalSignatureAlg(
header: DecodedJwtHeaderModel,
payload: DecodedJwtPayloadModel,
key: string,
keyFormat: AsymmetricKeyFormatValues,
): Promise<Result<EncoderResult, DebuggerErrorModel>> {
if (isDigitalSignatureAlg(header.alg)) {
if (!key) {
return err({
task: DebuggerTaskValues.ENCODE,
input: DebuggerInputValues.KEY,
message: "Private key must not be empty.",
});
}
const jwt = await signWithAsymmetricPrivateKey(
header as CompactJWSHeaderParameters,
payload,
key,
keyFormat,
);
if (jwt.isErr()) {
return err({
task: DebuggerTaskValues.ENCODE,
input: DebuggerInputValues.KEY,
message: "Private key must not be empty.",
})
}
return ok({
jwt: jwt.value,
signingErrors: null,
});
}
return err({
task: DebuggerTaskValues.ENCODE,
input: DebuggerInputValues.HEADER,
message: `Invalid Digital Signature algorithm. Only use Digital Signature "alg" parameter values in the header as defined by [RFC 7518 (JSON Web Algorithms)](https://datatracker.ietf.org/doc/html/rfc7518#section-3.1).`,
});
}
processHeader(params: {
header: string;
signingAlgCategory: SigningAlgCategoryValues;
}): Result<
{
header: DecodedJwtHeaderModel;
headerWarnings: string[] | null;
},
EncodingHeaderErrors
> {
const header = params.header;
const signingAlgCategory = params.signingAlgCategory;
const headerParsingResult = parseStringIntoValidJsonObject(header);
if (headerParsingResult.isErr()) {
const errors: EncodingHeaderErrors = {
headerErrors: [
"The header must be a valid JSON Object. [See examples](https://datatracker.ietf.org/doc/html/rfc8259#section-13)",
headerParsingResult.error,
],
signingErrors: [
"Fix any errors in the JWT header to enable editing this field.",
],
};
return err(errors);
}
const getValidatedHeaderResult = getValidatedEncoderHeader(
headerParsingResult.value,
);
if (getValidatedHeaderResult.isErr()) {
return err({
...getValidatedHeaderResult.error,
});
}
const decodedHeader = getValidatedHeaderResult.value.header;
if (isNoneAlg(decodedHeader.alg)) {
return ok({
header: decodedHeader,
headerWarnings:
getValidatedHeaderResult.value.headerWarnings &&
getValidatedHeaderResult.value.headerWarnings.length > 0
? getValidatedHeaderResult.value.headerWarnings
: null,
});
}
if (
signingAlgCategory === SigningAlgCategoryValues.SYMMETRIC &&
!isHmacAlg(decodedHeader.alg)
) {
const errors: EncodingHeaderErrors = {
headerErrors: [
`Invalid MAC algorithm. Only use MAC "alg" parameter values in the header as defined by [RFC 7518 (JSON Web Algorithms)](https://datatracker.ietf.org/doc/html/rfc7518#section-3.1).`,
],
signingErrors: [
"Fix any errors in the JWT header to enable editing this field.",
],
};
return err(errors);
}
if (
signingAlgCategory === SigningAlgCategoryValues.ASYMMETRIC &&
!isDigitalSignatureAlg(decodedHeader.alg)
) {
const errors: EncodingHeaderErrors = {
headerErrors: [
`Invalid Digital Signature algorithm. Only use Digital Signature "alg" parameter values in the header as defined by [RFC 7518 (JSON Web Algorithms)](https://datatracker.ietf.org/doc/html/rfc7518#section-3.1).`,
],
signingErrors: [
"Fix any errors in the JWT header to enable editing this field.",
],
};
return err(errors);
}
return ok({
header: decodedHeader,
headerWarnings:
getValidatedHeaderResult.value.headerWarnings &&
getValidatedHeaderResult.value.headerWarnings.length > 0
? getValidatedHeaderResult.value.headerWarnings
: null,
});
}
processPayload(params: { payload: string }): Result<
{
payload: DecodedJwtPayloadModel;
},
EncodingPayloadErrors
> {
const payloadParsingResult = parseStringIntoValidJsonObject(params.payload);
if (payloadParsingResult.isErr()) {
const errors: EncodingPayloadErrors = {
payloadErrors: [
"The payload must be a valid JSON object. [Learn more](https://datatracker.ietf.org/doc/html/rfc7515#section-4.1.1).",
payloadParsingResult.error,
],
};
return err(errors);
}
return ok({
payload: payloadParsingResult.value as DecodedJwtPayloadModel,
});
}
async processSymmetricSecretKey(params: {
header: string;
payload: string;
symmetricSecretKey: string;
symmetricSecretKeyEncoding: EncodingValues;
}): Promise<
Result<
EncoderResult,
EncodingSymmetricSecretKeyErrors
>
> {
const processHeaderResult = this.processHeader({
signingAlgCategory: SigningAlgCategoryValues.SYMMETRIC,
header: params.header,
});
if (processHeaderResult.isErr()) {
const errors: EncodingSymmetricSecretKeyErrors = {
payloadErrors: null,
encodingErrors: null,
symmetricSecretKeyErrors: null,
...processHeaderResult.error,
};
return err(errors);
}
const { header } = processHeaderResult.value;
const symmetricSecretKey = params.symmetricSecretKey;
const symmetricSecretKeyEncoding = params.symmetricSecretKeyEncoding;
if (
symmetricSecretKeyEncoding === EncodingValues.BASE64URL &&
!isValidBase64UrlString(symmetricSecretKey)
) {
const errors: EncodingSymmetricSecretKeyErrors = {
headerErrors: null,
payloadErrors: null,
encodingErrors: null,
symmetricSecretKeyErrors: [
"Invalid base64url string. Use the Base64 encoding using the URL and filename-safe character set as defined in [Section 5 of RFC 4648](https://datatracker.ietf.org/doc/html/rfc4648#section-5).",
],
signingErrors: [
"Invalid base64url string. Use the Base64 encoding using the URL and filename-safe character set as defined in [Section 5 of RFC 4648](https://datatracker.ietf.org/doc/html/rfc4648#section-5).",
],
};
return err(errors);
}
const processPayloadResult = this.processPayload({
payload: params.payload,
});
if (processPayloadResult.isErr()) {
const errors: EncodingSymmetricSecretKeyErrors = {
headerErrors: null,
signingErrors: null,
encodingErrors: null,
symmetricSecretKeyErrors: null,
...processPayloadResult.error,
};
return err(errors);
}
const { payload } = processPayloadResult.value;
const encodeJwtResult = await this.encodeJwt({
algType: SigningAlgCategoryValues.SYMMETRIC,
header,
payload,
symmetricSecretKey,
symmetricSecretKeyEncoding: symmetricSecretKeyEncoding,
});
if (encodeJwtResult.isErr()) {
const errors: EncodingSymmetricSecretKeyErrors = {
symmetricSecretKeyErrors: null,
...encodeJwtResult.error,
};
return err(errors);
}
return ok({
jwt: encodeJwtResult.value.jwt.trim(),
signingErrors: encodeJwtResult.value.signingErrors,
});
}
async processAsymmetricPrivateKey(params: {
header: string;
payload: string;
asymmetricPrivateKey: string;
asymmetricPrivateKeyFormat: AsymmetricKeyFormatValues;
}): Promise<Result<{ jwt: string }, EncodingAsymmetricPrivateKeyErrors>> {
const processHeaderResult = this.processHeader({
signingAlgCategory: SigningAlgCategoryValues.ASYMMETRIC,
header: params.header,
});
if (processHeaderResult.isErr()) {
const errors: EncodingAsymmetricPrivateKeyErrors = {
payloadErrors: null,
encodingErrors: null,
...processHeaderResult.error,
};
return err(errors);
}
const { header } = processHeaderResult.value;
const processPayloadResult = this.processPayload({
payload: params.payload,
});
if (processPayloadResult.isErr()) {
const errors: EncodingAsymmetricPrivateKeyErrors = {
headerErrors: null,
signingErrors: null,
encodingErrors: null,
...processPayloadResult.error,
};
return err(errors);
}
const { payload } = processPayloadResult.value;
const asymmetricPrivateKey = params.asymmetricPrivateKey;
const asymmetricPrivateKeyFormat = params.asymmetricPrivateKeyFormat;
const encodeJwtResult = await this.encodeJwt({
algType: SigningAlgCategoryValues.ASYMMETRIC,
header,
payload,
asymmetricPrivateKey: asymmetricPrivateKey,
asymmetricPrivateKeyFormat: asymmetricPrivateKeyFormat,
});
if (encodeJwtResult.isErr()) {
const errors: EncodingAsymmetricPrivateKeyErrors = {
...encodeJwtResult.error,
};
return err(errors);
}
return ok({
jwt: encodeJwtResult.value.jwt.trim(),
});
}
async encodeJwt(
params:
| {
algType: SigningAlgCategoryValues.ANY;
header: DecodedJwtHeaderModel;
payload: DecodedJwtPayloadModel;
symmetricSecretKey: string;
symmetricSecretKeyEncoding: EncodingValues;
asymmetricPrivateKey: string;
asymmetricPrivateKeyFormat: AsymmetricKeyFormatValues;
}
| {
algType: SigningAlgCategoryValues.SYMMETRIC;
header: DecodedJwtHeaderModel;
payload: DecodedJwtPayloadModel;
symmetricSecretKey: string;
symmetricSecretKeyEncoding: EncodingValues;
}
| {
algType: SigningAlgCategoryValues.ASYMMETRIC;
header: DecodedJwtHeaderModel;
payload: DecodedJwtPayloadModel;
asymmetricPrivateKey: string;
asymmetricPrivateKeyFormat: AsymmetricKeyFormatValues;
},
): Promise<
Result<
EncoderResult,
EncodingJwtErrors
>
> {
const algType = params.algType;
const header = params.header;
const payload = params.payload;
let encodeJWTResult: Result<EncoderResult, DebuggerErrorModel> | null = null;
if (algType === SigningAlgCategoryValues.ANY) {
const symmetricSecretKey = params.symmetricSecretKey;
const symmetricSecretKeyEncoding = params.symmetricSecretKeyEncoding;
const asymmetricPrivateKey = params.asymmetricPrivateKey;
const asymmetricPrivateKeyFormat = params.asymmetricPrivateKeyFormat;
encodeJWTResult = isHmacAlg(header.alg)
? await this.encodeJWTWithHmacAlg(
header,
payload,
symmetricSecretKey,
symmetricSecretKeyEncoding,
)
: isDigitalSignatureAlg(header.alg)
? await this.encodeJWTWithDigitalSignatureAlg(
header,
payload,
asymmetricPrivateKey,
asymmetricPrivateKeyFormat,
)
: null;
}
if (
algType === SigningAlgCategoryValues.SYMMETRIC &&
isHmacAlg(header.alg)
) {
const symmetricSecretKey = params.symmetricSecretKey;
const symmetricSecretKeyEncoding = params.symmetricSecretKeyEncoding;
encodeJWTResult = await this.encodeJWTWithHmacAlg(
header,
payload,
symmetricSecretKey,
symmetricSecretKeyEncoding,
);
}
if (
algType === SigningAlgCategoryValues.ASYMMETRIC &&
isDigitalSignatureAlg(header.alg)
) {
const asymmetricPrivateKey = params.asymmetricPrivateKey;
const asymmetricPrivateKeyFormat = params.asymmetricPrivateKeyFormat;
encodeJWTResult = await this.encodeJWTWithDigitalSignatureAlg(
header,
payload,
asymmetricPrivateKey,
asymmetricPrivateKeyFormat,
);
}
if (!encodeJWTResult) {
const errors: EncodingJwtErrors = {
headerErrors: [
`Invalid cryptographic algorithm. Only use "alg" parameter values in the header as defined by [RFC 7518 (JSON Web Algorithms)](https://datatracker.ietf.org/doc/html/rfc7518#section-3.1).`,
],
signingErrors: [
"Fix any errors in the JWT header to enable editing this field.",
],
payloadErrors: null,
encodingErrors: null,
};
return err(errors);
}
if (encodeJWTResult.isErr()) {
switch (encodeJWTResult.error.input) {
case DebuggerInputValues.HEADER: {
const errors: EncodingJwtErrors = {
headerErrors: [encodeJWTResult.error.message],
signingErrors: [
"Fix any errors in the JWT header to enable editing this field.",
],
payloadErrors: null,
encodingErrors: null,
};
return err(errors);
}
case DebuggerInputValues.PAYLOAD: {
const errors: EncodingJwtErrors = {
headerErrors: null,
signingErrors: null,
payloadErrors: [encodeJWTResult.error.message],
encodingErrors: null,
};
return err(errors);
}
case DebuggerInputValues.SECRET: {
const errors: EncodingJwtErrors = {
headerErrors: null,
signingErrors: [encodeJWTResult.error.message],
payloadErrors: null,
encodingErrors: null,
};