Commit 38befee
crypto: add JWK support for ML-KEM and SLH-DSA key types
Signed-off-by: Filip Skokan <panva.ip@gmail.com>
PR-URL: #62706
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>1 parent 2004d8d commit 38befeeCopy full SHA for 38befee
39 files changed
+842-357Lines changed: 842 additions & 357 deletions
File tree
Expand file treeCollapse file tree
Open diff view settings
Filter options
- benchmark/crypto
- doc/api
- lib/internal/crypto
- src
- crypto
- test
- fixtures/keys
- parallel
Expand file treeCollapse file tree
Open diff view settings
Collapse file
-3Lines changed: 0 additions & 3 deletions
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
54 | 54 | |
55 | 55 | |
56 | 56 | |
57 | | - |
58 | | - |
59 | | - |
60 | 57 | |
61 | 58 | |
62 | 59 | |
|
Collapse file
+27-15Lines changed: 27 additions & 15 deletions
- Display the source diff
- Display the rich diff
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
88 | 88 | |
89 | 89 | |
90 | 90 | |
91 | | - |
92 | | - |
93 | | - |
| 91 | + |
| 92 | + |
| 93 | + |
94 | 94 | |
95 | 95 | |
96 | | - |
97 | | - |
98 | | - |
99 | | - |
100 | | - |
101 | | - |
102 | | - |
103 | | - |
104 | | - |
105 | | - |
106 | | - |
107 | | - |
| 96 | + |
| 97 | + |
| 98 | + |
| 99 | + |
| 100 | + |
| 101 | + |
| 102 | + |
| 103 | + |
| 104 | + |
| 105 | + |
| 106 | + |
| 107 | + |
108 | 108 | |
109 | 109 | |
110 | 110 | |
| ||
2399 | 2399 | |
2400 | 2400 | |
2401 | 2401 | |
| 2402 | + |
| 2403 | + |
| 2404 | + |
| 2405 | + |
2402 | 2406 | |
2403 | 2407 | |
2404 | 2408 | |
| ||
3928 | 3932 | |
3929 | 3933 | |
3930 | 3934 | |
| 3935 | + |
| 3936 | + |
| 3937 | + |
| 3938 | + |
3931 | 3939 | |
3932 | 3940 | |
3933 | 3941 | |
| ||
3979 | 3987 | |
3980 | 3988 | |
3981 | 3989 | |
| 3990 | + |
| 3991 | + |
| 3992 | + |
| 3993 | + |
3982 | 3994 | |
3983 | 3995 | |
3984 | 3996 | |
|
Collapse file
+12-6Lines changed: 12 additions & 6 deletions
- Display the source diff
- Display the rich diff
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
1132 | 1132 | |
1133 | 1133 | |
1134 | 1134 | |
| 1135 | + |
| 1136 | + |
| 1137 | + |
1135 | 1138 | |
1136 | 1139 | |
1137 | 1140 | |
| ||
1190 | 1193 | |
1191 | 1194 | |
1192 | 1195 | |
1193 | | - |
1194 | | - |
1195 | | - |
| 1196 | + |
| 1197 | + |
| 1198 | + |
1196 | 1199 | |
1197 | 1200 | |
1198 | 1201 | |
| ||
1280 | 1283 | |
1281 | 1284 | |
1282 | 1285 | |
| 1286 | + |
| 1287 | + |
| 1288 | + |
1283 | 1289 | |
1284 | 1290 | |
1285 | 1291 | |
| ||
1353 | 1359 | |
1354 | 1360 | |
1355 | 1361 | |
1356 | | - |
1357 | | - |
1358 | | - |
| 1362 | + |
| 1363 | + |
| 1364 | + |
1359 | 1365 | |
1360 | 1366 | |
1361 | 1367 | |
|
Collapse file
lib/internal/crypto/ml_kem.js
Copy file name to clipboardExpand all lines: lib/internal/crypto/ml_kem.js+14Lines changed: 14 additions & 0 deletions
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
43 | 43 | |
44 | 44 | |
45 | 45 | |
| 46 | + |
46 | 47 | |
| 48 | + |
47 | 49 | |
48 | 50 | |
49 | 51 | |
| ||
177 | 179 | |
178 | 180 | |
179 | 181 | |
| 182 | + |
| 183 | + |
| 184 | + |
| 185 | + |
| 186 | + |
| 187 | + |
| 188 | + |
| 189 | + |
| 190 | + |
| 191 | + |
| 192 | + |
| 193 | + |
180 | 194 | |
181 | 195 | |
182 | 196 | |
|
Collapse file
lib/internal/crypto/webcrypto.js
Copy file name to clipboardExpand all lines: lib/internal/crypto/webcrypto.js+6Lines changed: 6 additions & 0 deletions
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
603 | 603 | |
604 | 604 | |
605 | 605 | |
| 606 | + |
| 607 | + |
| 608 | + |
| 609 | + |
| 610 | + |
| 611 | + |
606 | 612 | |
607 | 613 | |
608 | 614 | |
|
Collapse file
+2-2Lines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
394 | 394 | |
395 | 395 | |
396 | 396 | |
397 | | - |
| 397 | + |
398 | 398 | |
399 | 399 | |
400 | 400 | |
| ||
432 | 432 | |
433 | 433 | |
434 | 434 | |
435 | | - |
| 435 | + |
436 | 436 | |
437 | 437 | |
438 | 438 | |
|
Collapse file
+33-3Lines changed: 33 additions & 3 deletions
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
5 | 5 | |
6 | 6 | |
7 | 7 | |
8 | | - |
| 8 | + |
9 | 9 | |
10 | 10 | |
11 | 11 | |
| ||
200 | 200 | |
201 | 201 | |
202 | 202 | |
203 | | - |
| 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 | + |
204 | 234 | |
205 | 235 | |
206 | 236 | |
| ||
723 | 753 | |
724 | 754 | |
725 | 755 | |
726 | | - |
| 756 | + |
727 | 757 | |
728 | 758 | |
729 | 759 | |
|
0 commit comments