Commit 06dccc5
committed
fix CRL extension update by using ASN.1 INTEGER
- use ASN.1 INTEGER with DER INTEGER tag to stay compatible with JDK's
X509 CRL extension parsing
before this commit, we were seeing plain integers in the CRL extension:
35 36 39
│ │ └── '9' (0x39)
│ └───── '6' (0x36)
└──────── '5' (0x35)
after:
02 02 02 39
│ │ └──── 569 = 0x0239
│ └─────── length: 2 bytes
└────────── tag: INTEGER
- add spec for testing DER INTEGER tag1 parent 92b3db6 commit 06dccc5
File tree
2 files changed
+49
-7
lines changed- lib/puppetserver/ca/action
- spec/puppetserver/ca/action
2 files changed
+49
-7
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
145 | 145 | | |
146 | 146 | | |
147 | 147 | | |
| 148 | + | |
148 | 149 | | |
149 | | - | |
150 | | - | |
| 150 | + | |
| 151 | + | |
151 | 152 | | |
152 | | - | |
153 | | - | |
| 153 | + | |
| 154 | + | |
154 | 155 | | |
155 | 156 | | |
156 | 157 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
421 | 421 | | |
422 | 422 | | |
423 | 423 | | |
| 424 | + | |
424 | 425 | | |
425 | 426 | | |
426 | 427 | | |
| |||
433 | 434 | | |
434 | 435 | | |
435 | 436 | | |
436 | | - | |
437 | | - | |
438 | | - | |
| 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 | + | |
439 | 480 | | |
440 | 481 | | |
441 | 482 | | |
| |||
0 commit comments