1
0
mirror of https://github.com/openbsd/src.git synced 2026-04-18 03:04:40 +00:00

Sync - CCR uses an IANA assigned codepoint nowadays

OK tb@
This commit is contained in:
job
2026-04-07 14:38:04 +00:00
parent 4b39dd3dc4
commit 7ed665c6a3
2 changed files with 4 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
/* $OpenBSD: ccr.c,v 1.33 2026/01/29 18:25:29 tb Exp $ */
/* $OpenBSD: ccr.c,v 1.34 2026/04/07 14:38:04 job Exp $ */
/*
* Copyright (c) 2025 Job Snijders <job@openbsd.org>
*
@@ -1597,7 +1597,7 @@ ccr_parse(const char *fn, const unsigned char *der, size_t len)
char buf[128];
OBJ_obj2txt(buf, sizeof(buf), ci->contentType, 1);
warnx("%s: unexpected OID: got %s, want 1.3.6.1.4.1.41948.828",
warnx("%s: unexpected OID: got %s, want 1.2.840.113549.1.9.16.1.54",
fn, buf);
goto out;
}

View File

@@ -1,4 +1,4 @@
/* $OpenBSD: x509.c,v 1.129 2026/04/07 10:59:19 tb Exp $ */
/* $OpenBSD: x509.c,v 1.130 2026/04/07 14:38:04 job Exp $ */
/*
* Copyright (c) 2022 Theo Buehler <tb@openbsd.org>
* Copyright (c) 2021 Claudio Jeker <claudio@openbsd.org>
@@ -46,7 +46,7 @@ ASN1_OBJECT *rsc_oid; /* id-ct-signedChecklist */
ASN1_OBJECT *aspa_oid; /* id-ct-ASPA */
ASN1_OBJECT *tak_oid; /* id-ct-SignedTAL */
ASN1_OBJECT *spl_oid; /* id-ct-signedPrefixList */
ASN1_OBJECT *ccr_oid; /* CanonicalCacheRepresentation PEN OID */
ASN1_OBJECT *ccr_oid; /* id-ct-rpkiCanonicalCacheRepresentation */
static const struct {
const char *oid;