CVS: cvs.openbsd.org: src
Theo Buehler <[email protected]>
| Newsgroups | gmane.os.openbsd.cvs |
|---|---|
| Message-ID | <[email protected]> |
CVSROOT: /cvs Module name: src Changes by: [email protected] 2026/07/13 04:53:12 Modified files: usr.sbin/rpki-client: cert.c Log message: rpki-client: simplify absence of SIA handling for BRK and RSC While RFC 6487, 4.8.8.2 clearly mandates the presence of the SIA extension for all EE certificates, there are two exceptions. BGPsec router keys are known to be special for no good rason, and they uphold this tradition and the EE cert of RSCs doesn't have a SIA since that makes sense for things that aren't distributed via the RPKI repository system. The logic allowing these special snowflakes is currently quite contorted. Simplify the comment to omit unnecesary fluff and implement the logic to match the comment precisely, also suppressing a duplicated warnx(). This does not really change anything but is much easier to follow. ok claudio