From 03943530fe7a60603c0fd8e6e3fd9a29e7531609 Mon Sep 17 00:00:00 2001 From: job Date: Wed, 2 Nov 2022 12:46:49 +0000 Subject: [PATCH] Reference RSC RFC-to-be instead of internet-draft --- usr.sbin/rpki-client/rpki-client.8 | 6 +++--- usr.sbin/rpki-client/rsc.c | 12 ++++++------ 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/usr.sbin/rpki-client/rpki-client.8 b/usr.sbin/rpki-client/rpki-client.8 index c5d5cd03dbf..2e1af14c767 100644 --- a/usr.sbin/rpki-client/rpki-client.8 +++ b/usr.sbin/rpki-client/rpki-client.8 @@ -1,4 +1,4 @@ -.\" $OpenBSD: rpki-client.8,v 1.74 2022/11/02 12:43:02 job Exp $ +.\" $OpenBSD: rpki-client.8,v 1.75 2022/11/02 12:46:49 job Exp $ .\" .\" Copyright (c) 2019 Kristaps Dzonsons .\" @@ -301,8 +301,8 @@ A Profile for BGPsec Router Certificates, Certificate Revocation Lists, and Certification Requests. .It RFC 8630 Resource Public Key Infrastructure (RPKI) Trust Anchor Locator. -.It draft-ietf-sidrops-rpki-rsc-10 -A profile for Resource Public Key Infrastructure (RPKI) Signed Checklists (RSC). +.It RFC 9323 +A Profile for RPKI Signed Checklists (RSCs). .It draft-ietf-sidrops-aspa-profile-10 A Profile for Autonomous System Provider Authorization (ASPA). .It draft-ietf-sidrops-signed-tal-12 diff --git a/usr.sbin/rpki-client/rsc.c b/usr.sbin/rpki-client/rsc.c index 80adec93058..b53d089db8c 100644 --- a/usr.sbin/rpki-client/rsc.c +++ b/usr.sbin/rpki-client/rsc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rsc.c,v 1.17 2022/11/02 10:04:41 tb Exp $ */ +/* $OpenBSD: rsc.c,v 1.18 2022/11/02 12:46:49 job Exp $ */ /* * Copyright (c) 2022 Theo Buehler * Copyright (c) 2022 Job Snijders @@ -42,7 +42,7 @@ struct parse { extern ASN1_OBJECT *rsc_oid; /* - * Types and templates for RSC eContent - draft-ietf-sidrops-rpki-rsc-08 + * Types and templates for RSC eContent - RFC 9323 */ typedef struct { @@ -263,7 +263,7 @@ rsc_check_digesttype(struct parse *p, const X509_ALGOR *alg) } /* - * Parse the FileNameAndHash sequence, draft-ietf-sidrops-rpki-rsc, section 4.4. + * Parse the FileNameAndHash sequence, RFC 9323, section 4.4. * Return zero on failure, non-zero on success. */ static int @@ -319,7 +319,7 @@ rsc_parse_checklist(struct parse *p, const STACK_OF(FileNameAndHash) *checkList) /* * Parses the eContent segment of an RSC file - * draft-ietf-sidrops-rpki-rsc, section 4 + * RFC 9323, section 4 * Returns zero on failure, non-zero on success. */ static int @@ -330,7 +330,7 @@ rsc_parse_econtent(const unsigned char *d, size_t dsz, struct parse *p) int rc = 0; /* - * draft-ietf-sidrops-rpki-rsc section 4 + * RFC 9323 section 4 */ if ((rsc = d2i_RpkiSignedChecklist(NULL, &d, dsz)) == NULL) { @@ -368,7 +368,7 @@ rsc_parse_econtent(const unsigned char *d, size_t dsz, struct parse *p) } /* - * Parse a full draft-ietf-sidrops-rpki-rsc file. + * Parse a full RFC 9323 file. * Returns the RSC or NULL if the object was malformed. */ struct rsc * -- 2.20.1