diff options
author | Job Snijders <job@cvs.openbsd.org> | 2022-11-02 12:46:50 +0000 |
---|---|---|
committer | Job Snijders <job@cvs.openbsd.org> | 2022-11-02 12:46:50 +0000 |
commit | 8dae1c61608ee9742eb81f5cd92eea86931b2e9a (patch) | |
tree | 6d573645972cc6d1128de5bf810c1fd6c309164f | |
parent | e17f607fbc86892fab7be337c821a84027f605fb (diff) |
Reference RSC RFC-to-be instead of internet-draft
-rw-r--r-- | usr.sbin/rpki-client/rpki-client.8 | 6 | ||||
-rw-r--r-- | 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 <kristaps@bsd.lv> .\" @@ -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 <tb@openbsd.org> * Copyright (c) 2022 Job Snijders <job@fastly.com> @@ -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 * |